正在显示
1 个修改的文件
包含
7 行增加
和
0 行删除
@@ -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 |
-
请 注册 或 登录 后发表评论