wugg 3 年 前
コミット
ecfd7c7642

+ 1 - 0
.env

@@ -0,0 +1 @@
+APP_DEBUG = false

[APP]
DEFAULT_TIMEZONE = Asia/Shanghai


[LANG]
default_lang = zh-cn

+ 1 - 0
.gitignore

@@ -4,4 +4,5 @@ composer.lock
 application/config.php
 application/database.php
 runtime
+.env
 

+ 225 - 169
application/Admin/controller/Account.php

@@ -4,6 +4,7 @@
  */
 
 namespace app\Admin\controller;
+
 use think\Db;
 
 class Account extends Base
@@ -15,49 +16,70 @@ class Account extends Base
     }
 
     /**
-    * @param status
-    * @param username
-    * @param mobile
-    * @param nickname
-    * @param page
-    * @param size
+     * @param status
+     * @param username
+     * @param mobile
+     * @param nickname
+     * @param page
+     * @param size
      */
-    public function List(){
-        $page = isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) : 1;
-        $size = isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :10;
-        $status = isset($this->post['status'])&&$this->post['status']!=="" ? intval($this->post['status']) :"";
-        $where=[];
-        if($status!==""){
-            $where['status'] = $status;
+    public function List()
+    {
+        $page = isset($this->post['page']) && $this->post['page'] != "" ? intval($this->post['page']) : 1;
+        $size = isset($this->post['size']) && $this->post['size'] != "" ? intval($this->post['size']) : 10;
+        $status = isset($this->post['status']) && $this->post['status'] !== "" ? intval($this->post['status']) : "";
+        $where = ['a.is_del'=>0];
+        if ($status !== "") {
+            $where['a.status'] = $status;
         }
-        $username =  isset($this->post['username'])&&$this->post['username']!=="" ? trim($this->post['username']) :"";
-        if($username!=""){
-            $where['username'] = ["like","%{$username}%"];
+        $username = isset($this->post['username']) && $this->post['username'] !== "" ? trim($this->post['username']) : "";
+        if ($username != "") {
+            $where['username'] = ["like", "%{$username}%"];
         }
-        $nickname =  isset($this->post['nickname'])&&$this->post['nickname']!=="" ? trim($this->post['nickname']) :"";
-        if($nickname!=""){
-            $where['nickname'] = ["like"=>"%{$nickname}%"];
+        $nickname = isset($this->post['nickname']) && $this->post['nickname'] !== "" ? trim($this->post['nickname']) : "";
+        if ($nickname != "") {
+            $where['nickname'] = ["like" => "%{$nickname}%"];
         }
-        $mobile =  isset($this->post['mobile'])&&$this->post['mobile']!=="" ? trim($this->post['mobile']) :"";
-        if($mobile!=""){
-            $where['mobile'] = ["like"=>"%{$mobile}%"];
+        $mobile = isset($this->post['mobile']) && $this->post['mobile'] !== "" ? trim($this->post['mobile']) : "";
+        if ($mobile != "") {
+            $where['c.mobile'] = ["like" => "%{$mobile}%"];
         }
+        $count = Db::name("account")->alias('a')
+            ->join("fc_rela_account b", "a.id = b.accountid", "left")
+            ->join("fc_account_info c", "b.account_info= c.id", "left")
+            ->where($where)->count();
+        $total = ceil($count / $size);
+        $page = $page >= $total ? $total : $page;
 
-        $count= Db::name("account_list")->where($where)->count();
-        $total = ceil($count/$size);
-        $page = $page>=$total? $total:$page;
-
-        $list = Db::name("account_list")->where($where)->page($page,$size)->order("addtime desc")->select();
-        $i=[];
-        foreach ($list as $vus ){
-            $vi = Db::name('rela_video')->join('fc_video a','a.id=fc_rela_video.video_id','left')->field('a.video_sn,a.video_name,a.video_url,a.video_img')->where(['accountid'=>$vus['id'],'a.is_del'=>0,])->select();
-            if(empty($vi)){
-                $vi=[];
+        $list = Db::name("account")->alias('a')->where($where)->page($page, $size)
+            ->join("fc_rela_account b", "a.id = b.accountid", "left")
+            ->join("fc_account_info c", "b.account_info= c.id", "left")
+            ->field("`a`.`id` AS `id`,
+	                      `a`.`username` AS `username`,
+	                      `a`.`password` AS `password`,
+	                      `a`.`salt` AS `salt`,
+	                      `a`.`status` AS `status`,
+                          `a`.`is_del` AS `is_del`,
+                          `a`.`starttime` AS `starttime`,
+                          `a`.`expiretime` AS `expiretime`,
+                          `a`.`activetime` AS `activetime`,
+                          `a`.`addtime` AS `addtime`,
+                           `c`.`nickname` AS `nickname`,
+                           `c`.`avatar` AS `avatar`,
+                           `c`.`mobile` AS `mobile`,
+                           `c`.`remark` AS `remark`,
+                           `c`.`sex` AS `sex`")
+            ->order("a.id desc")->select();
+        $i = [];
+        foreach ($list as $vus) {
+            $vi = Db::name('rela_video')->join('fc_video a', 'a.id=fc_rela_video.video_id', 'left')->field('a.video_sn,a.video_name,a.video_url,a.video_img')->where(['accountid' => $vus['id'], 'a.is_del' => 0,])->select();
+            if (empty($vi)) {
+                $vi = [];
             }
-            $vus['info']=$vi;
-            $i[]=$vus;
+            $vus['info'] = $vi;
+            $i[] = $vus;
         }
-        return app_show(0,"获取成功",["list"=>$i,"count"=>$count]);
+        return app_show(0, "获取成功", ["list" => $i, "count" => $count]);
     }
 
     /**
@@ -69,104 +91,107 @@ class Account extends Base
      * @param remark
      * @param video
      */
-    public function  Create(){
-        $username =  isset($this->post['username'])&&$this->post['username']!=="" ? trim($this->post['username']) :"";
-        if($username==""){
-           return error_show(1004,"参数username 不能为空");
+    public function Create()
+    {
+        $username = isset($this->post['username']) && $this->post['username'] !== "" ? trim($this->post['username']) : "";
+        if ($username == "") {
+            return error_show(1004, "参数username 不能为空");
         }
-        if(!checkAccount($username)){
-            return error_show(1004,"账户格式不正确");
+        if (!checkAccount($username)) {
+            return error_show(1004, "账户格式不正确");
         }
-        $isT= Db::name("account")->where(["is_del"=>0,"username"=>$username])->find();
-        if($isT){
-            return error_show(1004,"账户名已存在");
+        $isT = Db::name("account")->where(["is_del" => 0, "username" => $username])->find();
+        if ($isT) {
+            return error_show(1004, "账户名已存在");
         }
-        $pasword =  isset($this->post['password'])&&$this->post['password']!=="" ? trim($this->post['password']) :"";
-        if($pasword==""){
-            return error_show(1004,"参数password 不能为空");
+        $pasword = isset($this->post['password']) && $this->post['password'] !== "" ? trim($this->post['password']) : "";
+        if ($pasword == "") {
+            return error_show(1004, "参数password 不能为空");
         }
-        if(!checkPasswd($pasword)){
-            return error_show(1004,"密码格式不正确");
+        if (!checkPasswd($pasword)) {
+            return error_show(1004, "密码格式不正确");
         }
-        $starttime = isset($this->post['starttime'])&&$this->post['starttime']!=="" ? $this->post['starttime'] :"";
-        if($starttime==""){
-            return error_show(1004,"参数starttime 不能为空");
+        $starttime = isset($this->post['starttime']) && $this->post['starttime'] !== "" ? $this->post['starttime'] : "";
+        if ($starttime == "") {
+            return error_show(1004, "参数starttime 不能为空");
         }
-        $expiretime = isset($this->post['expiretime'])&&$this->post['expiretime']!=="" ? $this->post['expiretime'] :"";
-        if($expiretime==""){
-            return error_show(1004,"参数expiretime 不能为空");
+        $expiretime = isset($this->post['expiretime']) && $this->post['expiretime'] !== "" ? $this->post['expiretime'] : "";
+        if ($expiretime == "") {
+            return error_show(1004, "参数expiretime 不能为空");
         }
-        $nickname =  isset($this->post['nickname'])&&$this->post['nickname']!=="" ? trim($this->post['nickname']) :"";
+        $nickname = isset($this->post['nickname']) && $this->post['nickname'] !== "" ? trim($this->post['nickname']) : "";
 //        if($nickname==""){
 //            return error_show(1004,"参数nickname 不能为空");
 //        }
-        $mobile =  isset($this->post['mobile'])&&$this->post['mobile']!=="" ? trim($this->post['mobile']) :"";
+        $mobile = isset($this->post['mobile']) && $this->post['mobile'] !== "" ? trim($this->post['mobile']) : "";
 //        if($mobile==""){
 //            return error_show(1004,"参数mobile 不能为空");
 //        }
-        $remark = isset($this->post['remark'])&&$this->post['remark']!=="" ? trim($this->post['remark']) :"";
-        $video =  isset($this->post['video'])&&$this->post['video']!=="" ? $this->post['video'] :"";
-
+        $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();
-            $pas = sha1($pasword.$salt);
-            $data=[
-                "username"=>$username,
-                "password"=>$pas,
-                "pwd"=>$pasword,
-                "salt"=>$salt,
-                "status"=>0,
-                "is_del"=>0,
-                "starttime"=>$starttime,
-                "expiretime"=>$expiretime,
-                "addtime"=>date("Y-m-d H:i:s"),
-                "updatetime"=>date("Y-m-d H:i:s")
+            $pas = sha1($pasword . $salt);
+            $data = [
+                "username" => $username,
+                "password" => $pas,
+                "pwd" => $pasword,
+                "salt" => $salt,
+                "status" => 0,
+                "is_del" => 0,
+                "starttime" => $starttime,
+                "expiretime" => $expiretime,
+                "addtime" => date("Y-m-d H:i:s"),
+                "updatetime" => date("Y-m-d H:i:s")
             ];
-            $acccount = Db::name("account")->insert($data,false,true);
-            if($acccount>0){
-                $user=[
-                    "nickname"=>$nickname,
-                    "mobile"=>$mobile,
-                    "avatar"=>"",
-                    "remark"=>$remark,
-                    "sex"=>"",
-                    "addtime"=>date("Y-m-d H:i:s"),
-                    "updatetime"=>date("Y-m-d H:i:s")
+            $acccount = Db::name("account")->insert($data, false, true);
+            if ($acccount > 0) {
+                $user = [
+                    "nickname" => $nickname,
+                    "mobile" => $mobile,
+                    "avatar" => "",
+                    "remark" => $remark,
+                    "sex" => "",
+                    "addtime" => date("Y-m-d H:i:s"),
+                    "updatetime" => date("Y-m-d H:i:s")
                 ];
-                $info = Db::name("account_info")->insert($user,false,true);
-                if($info>0){
-                    $rela=["accountid"=>$acccount,"account_info"=>$info];
-                    $rela_acc=Db::name("rela_account")->insert($rela);
+                $info = Db::name("account_info")->insert($user, false, true);
+                if ($info > 0) {
+                    $rela = ["accountid" => $acccount, "account_info" => $info];
+                    $rela_acc = Db::name("rela_account")->insert($rela);
 
-                   // $rele = [["video_id"=>$video,"accountid"=>$video,"addtime"=>$video]];
-                   $l=[];
-                    foreach ($video as $value){
+                    // $rele = [["video_id"=>$video,"accountid"=>$video,"addtime"=>$video]];
+                    $l = [];
+                    foreach ($video as $value) {
 
-                      $temp=["video_id"=>$value,"accountid"=>$acccount,"addtime"=>date("Y-m-d H:i:s")];
-                        $l[]=$temp;
+                        $temp = ["video_id" => $value, "accountid" => $acccount, "addtime" => date("Y-m-d H:i:s")];
+                        $l[] = $temp;
                     }
 
-                    $rele_a= Db::name("rela_video")->insertAll($l);
-                    if($rele_a==false){
+                    $rele_a = Db::name("rela_video")->insertAll($l);
+                    if ($rele_a == false) {
                         Db::rollback();
-                        return error_show(1002,"绑定失败");
-                    }else{
-                        write_log("视频绑定成功",$this->userinfo,"account","add");
+                        return error_show(1002, "绑定失败");
+                    } else {
+                        write_log("视频绑定成功", $this->userinfo, "account", "add");
                     }
-                    if($rela_acc){
-                        write_log("账户{$username}新建成功",$this->userinfo,"account","add");
+                    if ($rela_acc) {
+                        write_log("账户{$username}新建成功", $this->userinfo, "account", "add");
                         Db::commit();
-                        return app_show(0,"账户新建成功");
+                        return app_show(0, "账户新建成功");
                     }
 
                 }
             }
             Db::rollback();
-            return error_show(1005,"账户新建失败");
-        }catch (\Exception $e){
+            return error_show(1005, "账户新建失败");
+        } catch (\Exception $e) {
             Db::rollback();
-            return error_show(1003,$e->getMessage());
+            return error_show(1003, $e->getMessage());
         }
     }
 
@@ -177,24 +202,45 @@ class Account extends Base
      * @throws \think\db\exception\ModelNotFoundException
      * @throws \think\exception\DbException
      */
-    public function Read(){
-        $id=isset($this->post['id'])&&$this->post["id"]!="" ? intval($this->post['id']):"";
-        if($id==""){
-            return error_show(1004,"参数id 不能为空");
+    public function Read()
+    {
+        $id = isset($this->post['id']) && $this->post["id"] != "" ? intval($this->post['id']) : "";
+        if ($id == "") {
+            return error_show(1004, "参数id 不能为空");
         }
-        $info = Db::name("account_list")->where(["id"=>$id])->find();
-        if(empty($info)){
-            return error_show(1005,"未找到数据");
+        $info = Db::name("account")->alias('a')->where(["a.id" => $id,'a.is_del'=>0])
+            ->join("fc_rela_account b", "a.id = b.accountid", "left")
+            ->join("fc_account_info c", "b.account_info= c.id", "left")
+            ->field("`a`.`id` AS `id`,
+	                      `a`.`username` AS `username`,
+	                      `a`.`password` AS `password`,
+	                      `a`.`salt` AS `salt`,
+	                      `a`.`status` AS `status`,
+                          `a`.`is_del` AS `is_del`,
+                          `a`.`starttime` AS `starttime`,
+                          `a`.`expiretime` AS `expiretime`,
+                          `a`.`activetime` AS `activetime`,
+                          `a`.`addtime` AS `addtime`,
+                           `c`.`nickname` AS `nickname`,
+                           `c`.`avatar` AS `avatar`,
+                           `c`.`mobile` AS `mobile`,
+                           `c`.`remark` AS `remark`,
+                           `c`.`sex` AS `sex`")
+            ->find();
+        if (empty($info)) {
+            return error_show(1005, "未找到数据");
         }
-        if($info["is_del"]==1){
-            return error_show(1005,"账户已被删除");
+        if ($info["is_del"] == 1) {
+            return error_show(1005, "账户已被删除");
         }
-        $info['status_n'] = $info['status']==0 ? "未激活": $info['status']==1? "已激活":"已失效";
+        $info['status_n'] = $info['status'] == 0 ? "未激活" : $info['status'] == 1 ? "已激活" : "已失效";
 
-        $vi = Db::name('rela_video')->join('fc_video a','a.id=fc_rela_video.video_id','left')->field('a.video_sn,a.video_name,a.video_url,a.video_img,fc_rela_video.video_id')->where(['accountid'=>$id,'a.is_del'=>0,'fc_rela_video.is_del'=>0])->select();
-       // var_dump(Db::name('rela_video')->getLastSql());
-        $info['info']= $vi;
-        return app_show(0,"获取成功",$info );
+        $vi = Db::name('rela_video')->join('fc_video a', 'a.id=fc_rela_video.video_id', 'left')
+            ->field('a.video_sn,a.video_name,a.video_url,a.video_img,fc_rela_video.video_id,a.status')
+            ->where(['accountid' => $id, 'a.is_del' => 0, 'fc_rela_video.is_del' => 0])->select();
+        //var_dump(Db::name('rela_video')->getLastSql());
+        $info['info'] = $vi;
+        return app_show(0, "获取成功", $info);
 
     }
 
@@ -208,20 +254,21 @@ class Account extends Base
      * @param remark
      * @param video
      */
-    public function Save(){
-        $id=isset($this->post['id'])&&$this->post['id']!=""? intval($this->post['id']) :"";
-        if($id==""){
-            return error_show(1004,"参数id 不能为空");
+    public function Save()
+    {
+        $id = isset($this->post['id']) && $this->post['id'] != "" ? intval($this->post['id']) : "";
+        if ($id == "") {
+            return error_show(1004, "参数id 不能为空");
         }
-        $info= Db::name("account")->where(["is_del"=>0,"id"=>$id])->find();
-        if(empty($info)){
-            return error_show(1004,"未找到数据");
+        $info = Db::name("account")->where(["is_del" => 0, "id" => $id])->find();
+        if (empty($info)) {
+            return error_show(1004, "未找到数据");
         }
-        $username =  isset($this->post['username'])&&$this->post['username']!=="" ? trim($this->post['username']) :"";
-        if($username!=""){
-            $isT= Db::name("account")->where(["is_del"=>0,"username"=>$username,"id"=>["<>",$id]])->find();
-            if($isT){
-                return error_show(1004,"账户名已存在");
+        $username = isset($this->post['username']) && $this->post['username'] !== "" ? trim($this->post['username']) : "";
+        if ($username != "") {
+            $isT = Db::name("account")->where(["is_del" => 0, "username" => $username, "id" => ["<>", $id]])->find();
+            if ($isT) {
+                return error_show(1004, "账户名已存在");
             }
             $info['username'] = $username;
         }
@@ -232,68 +279,77 @@ class Account extends Base
            $info['password']=sha1($pasword.$salt);
            $info['pwd']=$pasword;
         }
-        $starttime = isset($this->post['starttime'])&&$this->post['starttime']!=="" ? $this->post['starttime'] :"";
-        if($starttime!=""){
-           $info['starttime'] = $starttime;
+        $starttime = isset($this->post['starttime']) && $this->post['starttime'] !== "" ? $this->post['starttime'] : "";
+        if ($starttime != "") {
+            $info['starttime'] = $starttime;
         }
-        $expiretime = isset($this->post['expiretime'])&&$this->post['expiretime']!=="" ? $this->post['expiretime'] :"";
-        if($expiretime!=""){
+        $expiretime = isset($this->post['expiretime']) && $this->post['expiretime'] !== "" ? $this->post['expiretime'] : "";
+        if ($expiretime != "") {
             $expire = strtotime($expiretime);
-            if($expire>time()){
-                $info['status'] = $info['activetime']==""? 0:1;
-            }else{
-                $info['status'] =2;
+            if ($expire > time()) {
+                $info['status'] = $info['activetime'] == "" ? 0 : 1;
+            } else {
+                $info['status'] = 2;
             }
             $info['expiretime'] = $expiretime;
         }
         $info['updatetime'] = date("Y-m-d H:i:s");
-        $rela = Db::name("account_info")->alias("a")->Join("fc_rela_account b","b.account_info=a.id","left")->where(["b.accountid"=>$id])->field("a.*")->find();
-        $nickname =  isset($this->post['nickname'])&&$this->post['nickname']!=="" ? trim($this->post['nickname']) :"";
-        $rela['nickname']=$nickname;
-        $mobile =  isset($this->post['mobile'])&&$this->post['mobile']!=="" ? trim($this->post['mobile']) :"";
-        if($mobile!=""){
-            $rela['mobile']=$mobile;
+
+        $rela = Db::name("account_info")->alias("a")->Join("fc_rela_account b", "b.account_info=a.id", "left")->where(["b.accountid" => $id])->field("a.*")->find();
+        $nickname = isset($this->post['nickname']) && $this->post['nickname'] !== "" ? trim($this->post['nickname']) : "";
+         $rela['nickname'] = $nickname;
+        $mobile = isset($this->post['mobile']) && $this->post['mobile'] !== "" ? trim($this->post['mobile']) : "";
+        if ($mobile != "") {
+            $rela['mobile'] = $mobile;
+        }
+
+        $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['remark'] = isset($this->post['remark'])&&$this->post['remark']!=="" ? trim($this->post['remark']) :"";
-        $video =  isset($this->post['video'])&&$this->post['video']!=="" ? $this->post['video'] :"";
         $rela['updatetime'] = date("Y-m-d H:i:s");
 
         Db::startTrans();
         try {
             $acccount = Db::name("account")->update($info);
-            if($acccount){
+            if ($acccount) {
                 $infoacc = Db::name("account_info")->update($rela);
-                $del = Db::name('rela_video')->where(["is_del"=>0,"accountid"=>$id])->select();
-                    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=[];
-                foreach ($video as $valu){
-                    $temp=["video_id"=>$valu,"accountid"=>$id,"addtime"=>date("Y-m-d H:i:s")];
-                    $k[]=$temp;
+                $del = Db::name('rela_video')->where(["is_del" => 0, "accountid" => $id])->select();
+                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]);
                 }
-                $rele_a= Db::name("rela_video")->insertAll($k);
-                if($rele_a==false){
+                $k = [];
+                $vb = Db::name('video')->where(['status' => 0, 'id' => ["in", $video]])->select();
+                if (!empty($vb)) {
+                    return error_show(1004, "存在已禁用的视频");
+                }
+                foreach ($video as $valu) {
+                    $temp = ["video_id" => $valu, "accountid" => $id, "addtime" => date("Y-m-d H:i:s")];
+                    $k[] = $temp;
+                }
+                $rele_a = Db::name("rela_video")->insertAll($k);
+                if ($rele_a == false) {
                     Db::rollback();
-                    return error_show(1002,"绑定失败");
-                }else{
-                    write_log("视频绑定成功",$this->userinfo,"account","edit");
+                    return error_show(1002, "绑定失败");
+                } else {
+                    write_log("视频绑定成功", $this->userinfo, "account", "edit");
                 }
-                if($infoacc){
-                        write_log("账户{$username}新建成功",$this->userinfo,"account","edit");
-                        Db::commit();
-                        return app_show(0,"账户编辑成功");
-                }else{
+
+                if ($infoacc) {
+                    write_log("账户{$username}新建成功", $this->userinfo, "account", "edit");
+                    Db::commit();
+                    return app_show(0, "账户编辑成功");
+                } else {
                     Db::rollback();
-                    return error_show(1005,"账户编辑失败");
+                    return error_show(1005, "账户编辑失败");
                 }
             }
             Db::rollback();
-            return error_show(1005,"账户编辑失败");
-        }catch (\Exception $e){
+            return error_show(1005, "账户编辑失败");
+        } catch (\Exception $e) {
             Db::rollback();
-            return error_show(1003,$e->getMessage());
+            return error_show(1003, $e->getMessage());
         }
     }
 }

+ 34 - 3
application/Admin/controller/Order.php

@@ -44,11 +44,42 @@ class Order extends Base
          $order_up = date("Y-m-d H:i:s");
      }
      $where['order_time'] = ["between",[$order_low,$order_up]];
-     $count= Db::name("order_info")->where($where)->count();
+     $count= Db::name("order")->where($where)->count();
      $total = ceil($count/$size);
      $page = $page>=$total? $total:$page;
-     $list = Db::name("order_info")->where($where)->page($page,$size)->field("id,order_sn,username,nickname,order_num,
-     post_code,post_name,status,contector,contector_mobile,provice_name,city_name,area_name,addr,delivery_time,order_time")
+     $list = Db::name("order a")->where($where)->page($page,$size)->join("fc_order_post b","a.order_sn=b.order_sn","left")
+         ->join("fc_addr c","b.addrid = c.id","left")
+         ->join("fc_account e","a.accountid = e.id","left")
+         ->join("fc_rela_account f","a.accountid = f.accountid","left")
+         ->join("fc_account_info g","f.account_info =g.id","left")
+         ->field("`a`.`id` AS `id`,
+	`a`.`order_sn` AS `order_sn`,
+	`a`.`accountid` AS `accountid`,
+	`a`.`order_num` AS `order_num`,
+	`a`.`status` AS `status`,
+	`a`.`is_del` AS `is_del`,
+	`a`.`delivery_time` AS `delivery_time`,
+	`a`.`order_time` AS `order_time`,
+	`b`.`addrid` AS `addrid`,
+	`b`.`order_num` AS `border_num`,
+	`b`.`post_code` AS `post_code`,
+	`b`.`post_name` AS `post_name`,
+	`b`.`status` AS `bstatus`,
+	`c`.`addr` AS `addr`,
+	`c`.`provice` AS `provice`,
+	`c`.`city` AS `city`,
+	`c`.`provice_name` AS `provice_name`,
+	`c`.`city_name` AS `city_name`,
+	`c`.`area` AS `area`,
+	`c`.`area_name` AS `area_name`,
+	`c`.`contector` AS `contector`,
+	`c`.`mobile` AS `contector_mobile`,
+	`e`.`username` AS `username`,
+	`g`.`nickname` AS `nickname`,
+	`g`.`mobile` AS `mobile`,
+	`a`.`unit_weight` AS `unit_weight`,
+	`a`.`unit` AS `unit`
+	")
          ->order("order_time desc")
          ->select();
      return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);

+ 55 - 13
application/Admin/controller/Stock.php

@@ -23,38 +23,62 @@ class Stock extends Base
         $page = isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']) : 1;
         $size = isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']) :10;
         $status = isset($this->post['status'])&&$this->post['status']!=="" ? intval($this->post['status']) :"";
-        $where=[];
+        $where=['a.is_del'=>0];
         if($status!==""){
-            $where['status'] = $status;
+            $where['a.status'] = $status;
         }
         $username =  isset($this->post['username'])&&$this->post['username']!=="" ? trim($this->post['username']) :"";
         if($username!=""){
-            $where['username'] = ["like","%{$username}%"];
+            $where['a.username'] = ["like","%{$username}%"];
         }
         $nickname =  isset($this->post['nickname'])&&$this->post['nickname']!=="" ? trim($this->post['nickname']) :"";
         if($nickname!=""){
-            $where['nickname'] = ["like","%{$nickname}%"];
+            $where['v.nickname'] = ["like","%{$nickname}%"];
         }
         $mobile =  isset($this->post['mobile'])&&$this->post['mobile']!=="" ? trim($this->post['mobile']) :"";
         if($mobile!=""){
-            $where['mobile'] = ["like","%{$mobile}%"];
+            $where['v.mobile'] = ["like","%{$mobile}%"];
         }
         $stock_low =  isset($this->post['stock_low'])&&$this->post['stock_low']!=="" ? intval($this->post['stock_low'])
             :"";
-        $wherestock="1=1";
+       // $wherestock="1=1";
         if($stock_low!=""){
-           // $where['stock_balance'] = [">=",$stock_low];
-            $wherestock .=" and stock_balance>={$stock_low}";
+            $where['stock_balance'] = [">=",$stock_low];
+           // $wherestock .=" and stock_balance>={$stock_low}";
         }
         $stock_up =  isset($this->post['stock_up'])&&$this->post['stock_up']!=="" ? intval($this->post['stock_up']) :"";
         if($stock_up!=""){
-           // $where['stock_balance'] = ["<=",$stock_up];
-            $wherestock .=" and stock_balance<={$stock_up}";
+           $where['stock_balance'] = ["<=",$stock_up];
+            //$wherestock .=" and stock_balance<={$stock_up}";
         }
-        $count= Db::name("stock_list")->where($where)->where($wherestock)->count();
+        $count= Db::name("account")->alias('a')
+            ->join("fc_rela_account b","a.id = b.accountid","left")
+            ->join("fc_account_info v","b.account_info = v.id","left")
+            ->join("fc_account_stock d","a.id = d.accountid","left")
+            ->where($where)->count();
         $total = ceil($count/$size);
         $page = $page>=$total? $total:$page;
-        $list = Db::name("stock_list")->where($where)->where($wherestock)->page($page,$size)->field("id,username,status,nickname,mobile,stock_balance,stock_update")->order("stock_update desc")->select();
+        $list = Db::name("account")->alias('a')->where($where)->page($page,$size)
+            ->join("fc_rela_account b","a.id = b.accountid","left")
+            ->join("fc_account_info v","b.account_info = v.id","left")
+            ->join("fc_account_stock d","a.id = d.accountid","left")
+            ->field("`a`.`id` AS `id`,
+                        `a`.`username` AS `username`,
+                        `a`.`status` AS `status`,
+                        `a`.`starttime` AS `starttime`,
+                        `a`.`expiretime` AS `expiretime`,
+                        `a`.`activetime` AS `activetime`,
+                        `a`.`addtime` AS `addtime`,
+                        `v`.`nickname` AS `nickname`,
+                        `v`.`avatar` AS `avatar`,
+                        `v`.`mobile` AS `mobile`,
+                        `v`.`remark` AS `remark`,
+                        ifnull( `d`.`stock_total`, 0 ) AS `stock_total`,
+                        ifnull( `d`.`stock_used`, 0 ) AS `stock_used`,
+                        ifnull( `d`.`stock_balance`, 0 ) AS `stock_balance`,
+                        ifnull( `d`.`stock_delivery`, 0 ) AS `stock_delivery`,
+                        ifnull( `d`.`updatetime`, '' ) AS `stock_update` ")
+            ->order("d.updatetime desc")->select();
         return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
     }
 
@@ -157,7 +181,25 @@ class Stock extends Base
         if($id==""){
             return error_show(1004,"参数id 不能为空");
         }
-        $account = Db::name("account_list")->where(["is_del"=>0,"id"=>$id])->find();
+        $account = Db::name("account")->alias('a')->where(["a.is_del"=>0,"a.id"=>$id])
+            ->join("fc_rela_account b", "a.id = b.accountid", "left")
+            ->join("fc_account_info c", "b.account_info= c.id", "left")
+            ->field("`a`.`id` AS `id`,
+	                      `a`.`username` AS `username`,
+	                      `a`.`password` AS `password`,
+	                      `a`.`salt` AS `salt`,
+	                      `a`.`status` AS `status`,
+                          `a`.`is_del` AS `is_del`,
+                          `a`.`starttime` AS `starttime`,
+                          `a`.`expiretime` AS `expiretime`,
+                          `a`.`activetime` AS `activetime`,
+                          `a`.`addtime` AS `addtime`,
+                           `c`.`nickname` AS `nickname`,
+                           `c`.`avatar` AS `avatar`,
+                           `c`.`mobile` AS `mobile`,
+                           `c`.`remark` AS `remark`,
+                           `c`.`sex` AS `sex`")
+            ->find();
         if(empty($account)){
             return error_show(1005,"账户信息不存在");
         }

+ 3 - 2
application/Admin/controller/Stock2.php

@@ -124,10 +124,11 @@ class Stock2 extends Base
         if(empty($video_sn)){
             return error_show(1005,"未找到视频编号");
         }
-        if($video_sn["is_del"]==1){
-            return error_show(1005,"视频编号已删除");
+        if($video_sn["is_del"]==1) {
+            return error_show(1005, "视频编号已删除");
         }
         $video_sn['status_n'] = $video_sn['status']==0? "禁用视频": $video_sn['status']==1? "启用视频":"禁用视频";
+
         return app_show(0,"成功获取",$video_sn);
 
     }

+ 19 - 1
application/Home/controller/Base.php

@@ -29,7 +29,25 @@ class Base
             return error_show(1004,"未找到账户id");
         }
 
-        $userinfo = Db::name("account_list")->where(["id"=>$tokeninfo['accountid']])->field("id,username,status,starttime,expiretime,activetime,addtime,nickname,avatar,mobile,remark")->find();
+        $userinfo = Db::name("account")->alias('a')->where(["a.id"=>$tokeninfo['accountid'],'a.is_del'=>0])
+            ->join("fc_rela_account b", "a.id = b.accountid", "left")
+            ->join("fc_account_info c", "b.account_info= c.id", "left")
+            ->field("`a`.`id` AS `id`,
+	                      `a`.`username` AS `username`,
+	                      `a`.`password` AS `password`,
+	                      `a`.`salt` AS `salt`,
+	                      `a`.`status` AS `status`,
+                          `a`.`is_del` AS `is_del`,
+                          `a`.`starttime` AS `starttime`,
+                          `a`.`expiretime` AS `expiretime`,
+                          `a`.`activetime` AS `activetime`,
+                          `a`.`addtime` AS `addtime`,
+                           `c`.`nickname` AS `nickname`,
+                           `c`.`avatar` AS `avatar`,
+                           `c`.`mobile` AS `mobile`,
+                           `c`.`remark` AS `remark`,
+                           `c`.`sex` AS `sex`")
+            ->find();
         //var_dump($userinfo);
         if(empty($userinfo)){
             return error_show(1004,"未找到账户数据");

+ 2 - 2
application/Home/controller/Login.php

@@ -30,10 +30,10 @@ class Login
         $account = Db::name("account")->where(["is_del"=>0,"username"=>$username])->find();
 
         if(empty($account)){
-            return error_show(1005,"账户未找到");
+            return error_show(1005,"卡号不正确");
         }
         if($account['status']==2){
-            return error_show(1005,"账户已过有效期");
+            return error_show(1005,"卡号已过有效期");
         }
         $now =time();
         $expire = strtotime($account['expiretime']);

+ 102 - 14
application/Home/controller/Order.php

@@ -20,15 +20,46 @@ class Order extends Base
         $page = isset($this->post['page'])&&$this->post['page']!="" ? intval($this->post['page']):1;
         $size = isset($this->post['size'])&&$this->post['size']!="" ? intval($this->post['size']):10;
         $status = isset($this->post['status'])&&$this->post['status']!="" ? intval($this->post['status']):0;
-        $where=["is_del"=>0,"accountid"=>$this->userinfo['id']];
+        $where=["a.is_del"=>0,"a.accountid"=>$this->userinfo['id']];
         if($status!=0 && in_array($status,[1,2])){
-            $where['status']=$status;
+            $where['a.status']=$status;
         }
-        $count =Db::name("order_info")->where($where)->count();
+        $count =Db::name("order a")->where($where)->count();
         $total = ceil($count/$size);
         $page = $page>$total?$total:$page;
-        $list = Db::name("order_info")->where($where)->page($page,$size)->field("id,order_sn,order_num,order_time,delivery_time,post_code,post_name,status,unit,unit_weight")
-            ->select();
+        $list = Db::name("order a")->where($where)->page($page,$size)
+            ->join("fc_order_post b","a.`order_sn` = `b`.`order_sn`","left")
+            ->join("fc_addr c","`b`.`addrid` = `c`.`id`","left")
+            ->join("fc_account e","a.`accountid` = `e`.`id`","left")
+            ->join("fc_rela_account f","a.`accountid` = `f`.`accountid`","left")
+            ->join("fc_account_info g","`f`.`account_info` = `g`.`id`","left")
+            ->field("a.id AS id,
+	a.`order_sn` AS `order_sn`,
+	a.`accountid` AS `accountid`,
+	a.`order_num` AS `order_num`,
+	a.`status` AS `status`,
+	a.`is_del` AS `is_del`,
+	a.`delivery_time` AS `delivery_time`,
+	a.`order_time` AS `order_time`,
+	`b`.`addrid` AS `addrid`,
+	`b`.`order_num` AS `border_num`,
+	`b`.`post_code` AS `post_code`,
+	`b`.`post_name` AS `post_name`,
+	`b`.`status` AS `bstatus`,
+	`c`.`addr` AS `addr`,
+	`c`.`provice` AS `provice`,
+	`c`.`city` AS `city`,
+	`c`.`provice_name` AS `provice_name`,
+	`c`.`city_name` AS `city_name`,
+	`c`.`area` AS `area`,
+	`c`.`area_name` AS `area_name`,
+	`c`.`contector` AS `contector`,
+	`c`.`mobile` AS `contector_mobile`,
+	`e`.`username` AS `username`,
+	`g`.`nickname` AS `nickname`,
+	`g`.`mobile` AS `mobile`,
+	a.`unit_weight` AS `unit_weight`,
+	a.`unit` AS `unit`")->select();
         return app_show(0,"获取成功",["list"=>$list,"count"=>$count]);
     }
 
@@ -41,8 +72,43 @@ class Order extends Base
         if($id==""){
             return error_show(1004,"参数id 不能为空");
         }
-        $order = Db::name("order_info")->where(["is_del"=>0,"accountid"=>$this->userinfo['id'],"id"=>$id])->field("id,
-        order_sn,order_num,order_time,delivery_time,status, post_code,post_name,provice_name,city_name,area_name,addr,contector,contector_mobile,nickname,unit,unit_weight")->find();
+
+        $order = Db::name("order")->alias('a')->where(["a.is_del"=>0,"a.accountid"=>$this->userinfo['id'],"a.id"=>$id])
+
+            ->join("fc_order_post b","a.order_sn =b.order_sn","left")
+            ->join("fc_addr c","b.addrid= c.id","left")
+            ->join("fc_account e","a.accountid= e.id","left")
+            ->join("fc_rela_account f","a.accountid = f.accountid","left")
+            ->join("fc_account_info g","f.account_info = g.id","left")
+            ->field("`a`.`id` AS `id`,
+                        `a`.`order_sn` AS `order_sn`,
+                        `a`.`accountid` AS `accountid`,
+                        `a`.`order_num` AS `order_num`,
+                        `a`.`status` AS `status`,
+                        `a`.`is_del` AS `is_del`,
+                        `a`.`delivery_time` AS `delivery_time`,
+                        `a`.`order_time` AS `order_time`,
+                        `b`.`addrid` AS `addrid`,
+                        `b`.`order_num` AS `border_num`,
+                        `b`.`post_code` AS `post_code`,
+                        `b`.`post_name` AS `post_name`,
+                        `b`.`status` AS `bstatus`,
+                        `c`.`addr` AS `addr`,
+                        `c`.`provice` AS `provice`,
+                        `c`.`city` AS `city`,
+                        `c`.`provice_name` AS `provice_name`,
+                        `c`.`city_name` AS `city_name`,
+                        `c`.`area` AS `area`,
+                        `c`.`area_name` AS `area_name`,
+                        `c`.`contector` AS `contector`,
+                        `c`.`mobile` AS `contector_mobile`,
+                        `e`.`username` AS `username`,
+                        `g`.`nickname` AS `nickname`,
+                        `g`.`mobile` AS `mobile`,
+                        `a`.`unit_weight` AS `unit_weight`,
+                        `a`.`unit` AS `unit` ")
+            ->find();
+        //var_dump($order);
         if(empty($order)){
             return error_show(1005,"未找到订单数据");
         }
@@ -67,7 +133,7 @@ class Order extends Base
             return error_show(1004,"unit_id不能为空");
         }
 
-        $kg= Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->field("id,name,weight")->find();
+        $kg= Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->field("id,name,weight,limit_num")->find();
        // var_dump(Db::name('unit')->where(["is_del" => 0,"id"=>$id,"status"=>1])->getLastSql());
         if(empty($kg)){
             return error_show(1004,"单位不能为空");
@@ -76,6 +142,17 @@ class Order extends Base
         if($count==""){
             return error_show(1004,"购买数量不能为空");
         }
+        if($kg['limit_num']>0){
+            $zl = Db::name('order_log')->where(["unit_id"=>$id,"accountid"=>$this->userinfo['id']])->sum('num');
+          // var_dump(Db::name('order_log')->getLastSql());
+
+            if($zl+$num>$kg['limit_num']){
+                $jf = $kg['limit_num']>=$zl ?$kg['limit_num']-$zl :0;
+                return error_show(1004,"购买数量超过限额,可购数量{$jf}{$kg['name']}");
+            }
+
+        }
+
         $addrid = isset($this->post['addrid'])&&$this->post['addrid']!="" ? intval($this->post['addrid']):"";
         if($addrid==""){
             return error_show(1004,"参数addrid 不能为空");
@@ -120,21 +197,32 @@ class Order extends Base
                 $orderpost=Db::name("order_post")->insert($post);
                 if($orderpost){
                    $updatestock= Db::name("account_stock")->where($stock)->update
-                    (['stock_balance'=>$stock['stock_balance']-$num,
-                        "stock_delivery"=>$stock['stock_delivery']+$num,"updatetime"=>date("Y-m-d H:i:s")]);
+                    (['stock_balance'=>$stock['stock_balance']-$count,
+                        "stock_delivery"=>$stock['stock_delivery']+$count,"updatetime"=>date("Y-m-d H:i:s")]);
                    if($updatestock){
                        $log=[
                            "accountid"=>$this->userinfo['id'],
-                           "run_stock"=>$num,
+                           "run_stock"=>$count,
                            "type"=>3,
-                           "after_stock"=>$stock['stock_balance']-$num,
+                           "after_stock"=>$stock['stock_balance']-$count,
                            "before_stock"=>$stock['stock_balance'],
                            "action_uid"=>$this->userinfo['id'],
                            "action_name"=>$this->userinfo['nickname'],
-                           "addtime"=>date("Y-m-d H:i:s")
+                           "addtime"=>date("Y-m-d H:i:s"),
+
                        ];
                        $stocklog =Db::name("stock_log")->insert($log);
-                       if($stocklog){
+                       $log=[
+                           "accountid"=>$this->userinfo['id'],
+                           "addtime"=>date("Y-m-d H:i:s"),
+                            "unit"=>$kg['name'],
+                           "unit_weight"=>$kg['weight'],
+                           "num"=>$num,
+                           "total_weight"=>$num*$kg['weight'],
+                           "unit_id"=>$kg['id']
+                       ];
+                       $st =Db::name("order_log")->insert($log);
+                       if($stocklog && $st){
                            Db::commit();
                            return app_show(0,"下单成功",['orderid'=>$ordercreate]);
                        }

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

@@ -21,6 +21,7 @@ class Vdlist extends Base
         //var_dump(Db::name("rela_video")->getLastSql());
         $total = ceil($count/$size);
         $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]);
 
@@ -37,8 +38,4 @@ class Vdlist extends Base
         }else
             return app_show(0,"预览成功",$look);
     }
-
-
-
-
 }

+ 1 - 0
application/route.php

@@ -78,3 +78,4 @@ Route::rule("home/orderstock","Home/Order/Stock");
 Route::rule("home/obtainlist","Home/Vdlist/Obtainlist");
 Route::rule("home/preview","Home/Vdlist/Preview");
 
+