wxgr
This commit is contained in:
@@ -107,6 +107,10 @@ class Clues extends HD_Controller
|
||||
$where["status > "] = '-1';
|
||||
}
|
||||
|
||||
if (strlen($params['wxgr'])) {
|
||||
$where["wxgr"] = $params['wxgr'];
|
||||
}
|
||||
|
||||
strlen($params['status2']) && $where["status2"] = $params['status2'];
|
||||
$province_id && $where['province_id'] = $province_id;
|
||||
$city_id && $where['city_id'] = $city_id;
|
||||
@@ -541,6 +545,9 @@ class Clues extends HD_Controller
|
||||
$log .= '更新客户姓名 ';
|
||||
$up['name'] = $info['name'];
|
||||
}
|
||||
if ($info['wxgr'] != $re['wxgr']) {
|
||||
$up['wxgr'] = $info['wxgr'];
|
||||
}
|
||||
if ($info['province_id'] != $re['province_id'] || $info['city_id'] != $re['city_id'] || $info['county_id'] != $re['county_id']) {
|
||||
$log .= '更新客户所在地区 ';
|
||||
$up['province_id'] = $info['province_id'];
|
||||
@@ -698,8 +705,9 @@ class Clues extends HD_Controller
|
||||
'name' => '客户姓名',
|
||||
'mobile' => '手机',
|
||||
'cf_title' => "来源",
|
||||
'biz_name' => '门店',
|
||||
'biz_poi' => '所在地区',
|
||||
'wxgr' => '是否添加微信',
|
||||
'biz_name' => '派单门店',
|
||||
'biz_poi' => '门店所在地区',
|
||||
'status_name' => '状态',
|
||||
'c_time' => '创建时间',
|
||||
];
|
||||
@@ -711,6 +719,7 @@ class Clues extends HD_Controller
|
||||
'name' => $val['name'],
|
||||
'mobile' => $val['mobile'],
|
||||
'cf_title' => $val['cf_title'],
|
||||
'wxgr' => $val['wxgr'] ? '是' : '否',
|
||||
'biz_name' => $val['biz_name'],
|
||||
'biz_poi' => $val['biz_poi'],
|
||||
'status_name' => $val['status_name'],
|
||||
|
||||
@@ -73,6 +73,18 @@
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="table-td">
|
||||
<div class="am-para-inline ml30">客户姓名:</div>
|
||||
<div class="am-para-inline w100" style="margin: 0">
|
||||
<select title="添加微信" name="info.wxgr" v-model="info.wxgr">
|
||||
<option value="">请选择</option>
|
||||
<option value="1" <?= $info['wxgr'] == 1 ? 'selected' : '' ?>>是</option>
|
||||
<option value="0" <?= $info['wxgr'] == 0 ? 'selected' : '' ?>>否</option>
|
||||
</select>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="table-td">
|
||||
<div class="am-para-inline ml30">所在地区:</div>
|
||||
|
||||
@@ -128,6 +128,16 @@
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="am-form-group fl" style="width:1920px">
|
||||
<label class="am-para-label w100">添加微信:</label>
|
||||
<div class="am-para-inline w100">
|
||||
<select title="添加微信" name="wxgr">
|
||||
<option value="">请选择</option>
|
||||
<option value="1" <?= $params['wxgr'] == 1 ? 'selected' : '' ?>>是</option>
|
||||
<option value="0" <?= $params['wxgr'] == 0 ? 'selected' : '' ?>>否</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="fl" style="width:1920px">
|
||||
<label class="am-para-label w100">创建时间:</label>
|
||||
<div class="am-form-group fl">
|
||||
|
||||
Reference in New Issue
Block a user