This commit is contained in:
小鱼开发
2024-07-08 07:46:57 +08:00
parent 5f0280a9a9
commit cabec695ff
+2 -3
View File
@@ -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]);
}