From cabec695ff0806146701da7a0be14ad19fd30d2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E9=B1=BC=E5=BC=80=E5=8F=91?= Date: Mon, 8 Jul 2024 07:46:57 +0800 Subject: [PATCH] 77 --- api/controllers/wxapp/licheb/Customers.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/api/controllers/wxapp/licheb/Customers.php b/api/controllers/wxapp/licheb/Customers.php index 54d7b255..8f844a73 100644 --- a/api/controllers/wxapp/licheb/Customers.php +++ b/api/controllers/wxapp/licheb/Customers.php @@ -792,7 +792,6 @@ class Customers extends Wxapp } $where = [ 'biz_id' => $this->biz_id, - 'cs_biz_id<>' => -1, 'status>=' => 0 ]; if ($of_id) { @@ -881,8 +880,8 @@ class Customers extends Wxapp $count = $this->customers_model->count($where); $lists = []; if ($count) { - $fileds = 'id,name,admin_id,mobile,level,car_json,is_top,cf_title,brand_id,cont_time,c_time,if_defeat - ,of_id,of2_id,wxqy,status,biz_id,cs_biz_id,county_id,cid'; + $fileds = 'id,rid,name,admin_id,mobile,level,car_json,is_top,cf_title,brand_id,cont_time,c_time,if_defeat + ,of_id,of2_id,wxqy,status,biz_id,county_id,cid'; $rows = $this->customers_model->select($where, $orderby, $page, $size, $fileds); $lists = $this->listCustomerField(['rows' => $rows, 'biz_type' => $biz_type, 'group_id' => $group_id]); }