panlumeng 3 years ago
parent
commit
880ca7c788

+ 4 - 5
application/Admin/controller/Account.php

@@ -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());
         }

+ 2 - 3
application/Home/controller/Order.php

@@ -109,9 +109,8 @@ class Order extends Base
         }
         if($kg['limit_num']>0){
             $zl = Db::name('order_log')->where(["unit_id"=>$id,"accountid"=>$this->userinfo['id']])->sum('num');
-            if(empty($zl)){
-                return error_show(1004,"重量不能为空");
-            }
+          // var_dump(Db::name('order_log')->getLastSql());
+
             if($zl['num']+$num>$kg['limit_num']){
                 return error_show(1004,"购买数量超过限额");
             }

+ 0 - 1
application/Home/controller/Vdlist.php

@@ -23,7 +23,6 @@ class Vdlist extends Base
         $page = $page>$total?$total:$page;
         //var_dump(Db::name("rela_video")->getLastSql());
         $list = Db::name("rela_video")->alias('a')->join("video b","a.video_id=b.id","left")->where($where)->page($page,$size)->field("b.id,b.video_sn,b.video_name,b.video_url,b.video_img,b.remark")->select();
-
         return app_show(0,"视频列表获取成功",["list"=>$list,"count"=>$count]);
 
     }