Commit afea4e23 authored by zhuwei's avatar zhuwei

无效客户不显示标签

parent e27bb4e7
......@@ -296,7 +296,10 @@ class Client extends Basic
{
$label[] = '保护期内';
}
$user_res[$k]['label'] = implode(',',$label);
//无效客户不显示标签
if($v['user_status'] != -1){
$user_res[$k]['label'] = implode(',',$label);
}
}
}else{//跟进数据处理
foreach($user_res as $k=>$v)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment