|
...
|
...
|
@@ -144,6 +144,8 @@ class KeywordLogic extends BaseLogic |
|
|
|
if($num > 1000){
|
|
|
|
$this->fail('最大数量不能超过1000');
|
|
|
|
}
|
|
|
|
DB::connection('custom_mysql')->beginTransaction();
|
|
|
|
try {
|
|
|
|
foreach ($this->param['title'] as $k=>$v){
|
|
|
|
if(empty($v)){
|
|
|
|
continue;
|
|
...
|
...
|
@@ -164,6 +166,11 @@ class KeywordLogic extends BaseLogic |
|
|
|
}
|
|
|
|
$this->model->edit(['route'=>$route],['id'=>$id]);
|
|
|
|
}
|
|
|
|
DB::connection('custom_mysql')->commit();
|
|
|
|
}catch (\Exception $e){
|
|
|
|
$this->fail('系统错误请联系管理员');
|
|
|
|
DB::connection('custom_mysql')->rollBack();
|
|
|
|
}
|
|
|
|
return $this->success();
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|