作者 郭盛
1 个管道 的构建 通过 耗费 13 秒

修改编辑删除领域

... ... @@ -488,15 +488,30 @@ class Teacher extends Api
$this->error($validate->getError());
}
$param['updatetime'] = time();
$info = Db::name('territory')
$res = Db::name('territory')
->where('id',$param['id'])
->update($param);
if(empty($info)){
$this->error('sql执行错误');
->find();
if($res['is_check'] == 1){
$info = Db::name('territory')
->where('id',$param['id'])
->update($param);
if(empty($info)){
$this->error('sql执行错误');
}else{
$a = Db::name('territory')->where('id',$param['id'])->find();
Db::name('teacher')->where('user_id',$a['user_id'])->update(['status'=>0]);
$this->success('SUCCESS');
}
}else{
$a = Db::name('territory')->where('id',$param['id'])->find();
Db::name('teacher')->where('user_id',$a['user_id'])->update(['status'=>0]);
$this->success('SUCCESS');
$info = Db::name('territory')
->where('id',$param['id'])
->update($param);
if(empty($info)){
$this->error('sql执行错误');
}else{
$this->success('SUCCESS');
}
}
}
... ...
... ... @@ -9695,7 +9695,7 @@
<div class="row mt0 footer">
<div class="col-md-6" align="left">
Generated on 2020-03-26 17:12:24 </div>
Generated on 2020-03-27 09:13:29 </div>
<div class="col-md-6" align="right">
<a href="https://www.fastadmin.net" target="_blank">FastAdmin</a>
</div>
... ...