|
@@ -263,7 +263,7 @@ class Account extends Base
|
|
|
$rela['updatetime'] = date("Y-m-d H:i:s");
|
|
|
|
|
|
Db::startTrans();
|
|
|
- try {
|
|
|
+ try {
|
|
|
$acccount = Db::name("account")->update($info);
|
|
|
if($acccount){
|
|
|
$infoacc = Db::name("account_info")->update($rela);
|
|
@@ -271,10 +271,9 @@ class Account extends Base
|
|
|
if($del==true){
|
|
|
$dl = Db::name('rela_video')->where(["is_del"=>0,"accountid"=>$id])->update(["addtime"=>date("Y-m-d H:i:s"),"is_del"=>1]);
|
|
|
}
|
|
|
- //$relo=["video_id"=>$video,"accountid"=>$video,"addtime"=>date("Y-m-d H:i:s")];
|
|
|
$k=[];
|
|
|
- $vb = Db::name('video')->where(['status'=>0,'id'=>$video])->select();
|
|
|
- if(empty($vb)){
|
|
|
+ $vb = Db::name('video')->where(['status'=>0,'id'=>["in",$video]])->select();
|
|
|
+ if(!empty($vb)){
|
|
|
return error_show(1004,"存在已禁用的视频");
|
|
|
}
|
|
|
foreach ($video as $valu){
|
|
@@ -300,7 +299,7 @@ class Account extends Base
|
|
|
}
|
|
|
Db::rollback();
|
|
|
return error_show(1005,"账户编辑失败");
|
|
|
- }catch (\Exception $e){
|
|
|
+ }catch (\Exception $e){
|
|
|
Db::rollback();
|
|
|
return error_show(1003,$e->getMessage());
|
|
|
}
|