修改客户登记文案
This commit is contained in:
@@ -726,6 +726,10 @@ class Clues extends HD_Controller
|
||||
if ($info['cf_pid'] != $re['cf_pid']) {
|
||||
$up['cf_pid'] = $info['cf_pid'];
|
||||
}
|
||||
if ($info['buy_time'] != $re['buy_time']) {
|
||||
$log .= '更新意向购车周期 ';
|
||||
$up['buy_time'] = $info['buy_time'];
|
||||
}
|
||||
$ret = $this->clues_model->update($up, array('id' => $info['id']));
|
||||
|
||||
if (!$ret) {
|
||||
|
||||
@@ -176,7 +176,15 @@
|
||||
<td class="table-td">
|
||||
<div class="input-group">
|
||||
<div class="input-group-addon">意向购车周期:</div>
|
||||
{{ infoShow.buy_time_cn }}
|
||||
<el-select clearable v-model="info.buy_time">
|
||||
<el-option label="请选择" value="0"></el-option>
|
||||
<el-option
|
||||
v-for="(item,index) in buyTimeList"
|
||||
:key="index"
|
||||
:label="item"
|
||||
:value="index">
|
||||
</el-option>
|
||||
</el-select>
|
||||
</div>
|
||||
<!--
|
||||
<div class="input-group">
|
||||
|
||||
@@ -12,10 +12,12 @@ class Receiver_customers_model extends HD_Model
|
||||
{
|
||||
private $table_name = 'lc_receiver_customers';
|
||||
private $status_arr = [-1 => '删除', 0 => '未见客户', 1 => '到店客户', 2 => '订单客户', 3 => '战败客户'];
|
||||
private $level = ['H', 'A', 'B', 'C'];
|
||||
// private $level = ['H', 'A', 'B', 'C'];
|
||||
private $level = ['H', 'A', 'B', 'C', 'D'];
|
||||
private $cfrom_arr = ['自有资源', '平台分配'];
|
||||
private $cfrom_clues_arr = ['自然进店', '外展', 'DM', '转介绍', '其它', '网站', '外展外拓', '垂直媒体', '自媒体'];
|
||||
private $buy_time = [3 => '3天(H级)', 7 => '7天(A级)', 15 => '15天(B级)', 30 => '30天(C级)'];
|
||||
// private $buy_time = [3 => '3天(H级)', 7 => '7天(A级)', 15 => '15天(B级)', 30 => '30天(C级)'];
|
||||
private $buy_time = [7 => '7天内', 15 => '15天内', 30 => '一个月内', 90 => '三个月内', 120 => '3个月以上'];
|
||||
private $follow_channel = ['见面', '电话', '微信'];
|
||||
|
||||
//解锁状态
|
||||
|
||||
Reference in New Issue
Block a user