|
@@ -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`,
|