非营业状态 增加时间选择

This commit is contained in:
2026-01-12 16:41:36 +08:00
parent 285a20f070
commit 20ef495571
3 changed files with 268 additions and 110 deletions

View File

@@ -394,14 +394,16 @@ class C_ReservationController extends GetxController with BaseControllerMixin {
},
);
var result = BaseModel.fromJson(responseData?.data);
if (responseData == null) {
dismissLoading();
showToast('服务暂不可用,请稍后');
showToast(result.error);
return;
}
dismissLoading();
var result = BaseModel.fromJson(responseData.data);
if (result.code == 0) {
showSuccessToast("预约成功");