作者 王晓刚
1 个管道 的构建 通过 耗费 7 秒

测试

@@ -129,6 +129,13 @@ class FormController extends WeChatBaseController @@ -129,6 +129,13 @@ class FormController extends WeChatBaseController
129 if (!$validate->check($param)) { 129 if (!$validate->check($param)) {
130 $this->error($validate->getError()); 130 $this->error($validate->getError());
131 } 131 }
  132 + $where['insurance_num'] = ['eq',$param['insurance_num']];
  133 + $collocation = Db::name('collocation')->where($where)->find();
  134 + if(!empty($collocation)){
  135 + $arr['code'] = 40000;
  136 + $arr['msg'] = "重复的保险单号";
  137 + return json_encode($arr);
  138 + }
132 $images = []; 139 $images = [];
133 if(!empty($param['imgs'])){ 140 if(!empty($param['imgs'])){
134 141