panlumeng 3 years ago
parent
commit
abbfdef156
2 changed files with 3 additions and 3 deletions
  1. 2 2
      application/Admin/controller/Account.php
  2. 1 1
      application/Home/controller/Base.php

+ 2 - 2
application/Admin/controller/Account.php

@@ -28,7 +28,7 @@ class Account 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['a.status'] = $status;
         }
@@ -208,7 +208,7 @@ class Account extends Base
         if ($id == "") {
             return error_show(1004, "参数id 不能为空");
         }
-        $info = Db::name("account")->alias('a')->where(["a.id" => $id])
+        $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`,

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

@@ -29,7 +29,7 @@ class Base
             return error_show(1004,"未找到账户id");
         }
 
-        $userinfo = Db::name("account")->alias('a')->where(["a.id"=>$tokeninfo['accountid']])
+        $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`,