|
@@ -442,7 +442,7 @@
|
|
|
</el-row>
|
|
|
<el-row v-for="item in state.ruleForm?.orderVisits[state.ruleForm?.orderVisits.length - 1]?.orderVisitDetails" :key="item.id" :gutter="10">
|
|
|
<!-- 务员评价 -->
|
|
|
- <template v-if="item.visitTarget === 10">
|
|
|
+ <template v-if="item.visitTarget === 10 && isTelSource">
|
|
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
<el-divider content-position="left">
|
|
|
<el-text tag="b" size="large" type="primary"> 话务员回访 </el-text>
|
|
@@ -476,7 +476,7 @@
|
|
|
{{ item.orgProcessingResults?.value }}
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :xs="24" :sm="24" :md="24" :lg="12" :xl="12" v-if="item.orgNoSatisfiedReason?.length">
|
|
|
+ <el-col :xs="24" :sm="24" :md="24" :lg="12" :xl="12" v-if="item.orgNoSatisfiedReason?.length && item.orgProcessingResults?.value === '不满意'">
|
|
|
<el-form-item label="不满意原因">
|
|
|
{{ item.orgNoSatisfiedReason?.map((item) => item.value).join(',') }}
|
|
|
</el-form-item>
|
|
@@ -1138,6 +1138,10 @@ const onMarketDetail = () => {
|
|
|
const onOrderDetail = () => {
|
|
|
openDialog(props.order);
|
|
|
};
|
|
|
+// 判断当前工单是否是电话来源
|
|
|
+const isTelSource = computed(() => {
|
|
|
+ return state.ruleForm?.sourceChannelCode === 'RGDH';
|
|
|
+});
|
|
|
// 暴露变量
|
|
|
defineExpose({
|
|
|
openDialog,
|