作者 sgj
1 个管道 的构建 通过 耗费 0 秒

修改预约提交逻辑

... ... @@ -13,6 +13,6 @@ return [
// 应用调试模式
'app_debug' => true,
// 应用Trace
'app_trace' => true,
'app_trace' => false,
];
\ No newline at end of file
... ...
... ... @@ -304,6 +304,8 @@ class YuyueController extends UserBaseController
$exist_map1['yuyue_end'] = ['<=',$end];
$is_exist1=\db('yuyue')->where($exist_map1)->find();
dump($is_exist1);
dump($is_exist);
if (!empty($is_exist)||!empty($is_exist1)){
return json(['code' => '0', 'msg' => '您好,您的预约时间与其他学员冲突,请刷新后提交!']);
}
... ...
... ... @@ -10,7 +10,7 @@
// [ 入口文件 ]
date_default_timezone_set('Asia/Shanghai');
// 调试模式开关
define("APP_DEBUG", 0);
define("APP_DEBUG", 1);
// 定义CMF根目录,可更改此目录
define('CMF_ROOT', __DIR__ . '/../');
... ...