修改运营后台线索状态

This commit is contained in:
lcc
2025-11-04 10:19:17 +08:00
parent 3e77d71e94
commit a9d58d3d88
@@ -387,14 +387,14 @@ class Clues extends BaseController
$area = $map_area_county[$v['county_id']][0];
$poi = "{$area['province_name']}-{$area['city_name']}-{$area['county_name']}";
}
$status_name = $statusAry[$v['status']]['name'];
$v['status2'] && $status_name .= '' . $statusAry[$v['status']]['list'][$v['status2']];
if ($limit >= 10000) {
$is_unlock = '';
if ($v['status'] == 1) {
$unlockCustomer = $this->customers_model->get(['rid' => $v['id'], 'un_lock' => Receiver_customers_model::LOCK_STATUS]);
$is_unlock = $unlockCustomer ? '已解锁' : '未解锁';
}
$status_name = $statusAry[$v['status']]['name'];
$v['status2'] && $status_name .= '' . $statusAry[$v['status']]['list'][$v['status2']];
$temp = [
'name' => $v['name'], 'mobile' => mobile_asterisk($v['mobile']), 'sid' => $v['sid'],
'belongUserName' => $belongUserName ? $belongUserName['username'] . '(' . $belongUserName['userCode'] . ')' : '',
@@ -413,7 +413,7 @@ class Clues extends BaseController
'sid' => $v['sid'],
'name' => $v['name'],
'mobile' => mobile_asterisk($v['mobile']),
'statusCn' => $statusList[$v['status']],
'statusCn' => $status_name,
'enTime' => $v['en_time'],
'belongUserName' => $belongUserName,
'brandList' => $brandList,