panlumeng 3 years ago
parent
commit
5e0745e173
1 changed files with 6 additions and 1 deletions
  1. 6 1
      application/Admin/controller/Account.php

+ 6 - 1
application/Admin/controller/Account.php

@@ -106,7 +106,9 @@ class Account extends Base
 //        }
         $remark = isset($this->post['remark'])&&$this->post['remark']!=="" ? trim($this->post['remark']) :"";
         $video =  isset($this->post['video'])&&$this->post['video']!=="" ? $this->post['video'] :"";
-
+        if($video==""){
+            return error_show(1004,"参数video 不能为空");
+        }
         Db::startTrans();
         try {
             $salt = makeSalt();
@@ -260,6 +262,9 @@ class Account extends Base
 
         $rela['remark'] = isset($this->post['remark'])&&$this->post['remark']!=="" ? trim($this->post['remark']) :"";
         $video =  isset($this->post['video'])&&$this->post['video']!=="" ? $this->post['video'] :"";
+        if($video==""){
+            return error_show(1004,"参数video 不能为空");
+        }
         $rela['updatetime'] = date("Y-m-d H:i:s");
 
         Db::startTrans();