|
|
@@ -59,7 +59,12 @@
|
|
|
</van-cell-group>
|
|
|
<p v-if="infoData && infoData.isClose == 1" style="padding: 10px 0"></p>
|
|
|
<!-- 跟进任务填写 -->
|
|
|
- <div class="assign" v-if="infoData && (infoData.isClose != 1 || this.infoData.allowFollowUp)">
|
|
|
+ <div
|
|
|
+ class="assign"
|
|
|
+ v-if="
|
|
|
+ infoData &&
|
|
|
+ ((infoData.isClose != 1 && infoData.isClose != 2) || this.infoData.allowFollowUp)
|
|
|
+ ">
|
|
|
<!-- <div class="assign"> -->
|
|
|
<div style="padding: 10px 16px 0 16px; color: red; font-size: 14px">
|
|
|
400客服已对来电进行分类,若分类有误,可重新分类
|
|
|
@@ -260,7 +265,7 @@ export default {
|
|
|
this.customerClassifyOption = option.data || [];
|
|
|
// 来电分类一
|
|
|
let item = this.customerClassifyOption.find(
|
|
|
- (val) => val.dictValue == this.infoData.customerClassify
|
|
|
+ (val) => val.dictValue == this.infoData.customerClassify,
|
|
|
);
|
|
|
this.customerClassifyValue = item ? item.remark : '';
|
|
|
this.customerClassify = item ? item.dictValue : '';
|
|
|
@@ -271,7 +276,7 @@ export default {
|
|
|
this.customerSubClassifyOption = option.data || [];
|
|
|
// 来电分类二
|
|
|
let item = this.customerSubClassifyOption.find(
|
|
|
- (val) => val.dictValue == this.infoData.customerSubClassify
|
|
|
+ (val) => val.dictValue == this.infoData.customerSubClassify,
|
|
|
);
|
|
|
item = item || this.customerSubClassifyOption[0];
|
|
|
this.customerSubClassifyValue = item.dictLabel || '';
|
|
|
@@ -285,7 +290,10 @@ export default {
|
|
|
if (response.code == 200) {
|
|
|
this.infoData = response.data;
|
|
|
this.title = response.data.name;
|
|
|
- if (this.infoData.isClose != 1 || this.infoData.allowFollowUp) {
|
|
|
+ if (
|
|
|
+ (this.infoData.isClose != 1 && this.infoData.isClose != 2) ||
|
|
|
+ this.infoData.allowFollowUp
|
|
|
+ ) {
|
|
|
// response.data.customerClue.customerClueItemList[0].customerClueInfoId = this.id;
|
|
|
this.taskGather = response.data.customerClue.customerClueItemList;
|
|
|
}
|
|
|
@@ -374,7 +382,7 @@ export default {
|
|
|
let customerClueItemList =
|
|
|
params.customerClueItemList[val].customerClueOptionList[i].customerClueItemList;
|
|
|
customerClueItemList.push(
|
|
|
- ...this.deepClone(customerClueOptionList[i].customerClueItemList, 0)
|
|
|
+ ...this.deepClone(customerClueOptionList[i].customerClueItemList, 0),
|
|
|
);
|
|
|
if (customerClueOptionList[i].customerClueItemList[0]) {
|
|
|
this.filterOption(customerClueOptionList[i].customerClueItemList, params);
|