|
|
@@ -82,10 +82,38 @@
|
|
82
|
82
|
{{ orderDetailData.F_AppointmentTime || "-" }}
|
|
83
|
83
|
</td>
|
|
84
|
84
|
</tr>
|
|
85
|
|
- <tr v-if="orderDetailData.F_ComplaintSource">
|
|
|
85
|
+ <tr v-show="isTS">
|
|
86
|
86
|
<th>投诉来源:</th>
|
|
87
|
|
- <td colspan="5">
|
|
88
|
|
- {{ orderDetailData.F_ComplaintSource }}
|
|
|
87
|
+ <td>
|
|
|
88
|
+ {{ orderDetailData.SourceName || "-" }}
|
|
|
89
|
+ </td>
|
|
|
90
|
+ <th>投诉部门:</th>
|
|
|
91
|
+ <td>
|
|
|
92
|
+ {{ orderDetailData.ComplaintDept || '-'}}
|
|
|
93
|
+ </td>
|
|
|
94
|
+ <th>投诉人:</th>
|
|
|
95
|
+ <td>
|
|
|
96
|
+ {{ orderDetailData.ComplaintUser || '-'}}
|
|
|
97
|
+ </td>
|
|
|
98
|
+ </tr>
|
|
|
99
|
+ <tr v-show="isJY">
|
|
|
100
|
+ <th>建议部门:</th>
|
|
|
101
|
+ <td colspan="3">
|
|
|
102
|
+ {{ orderDetailData.ComplaintDept || '-'}}
|
|
|
103
|
+ </td>
|
|
|
104
|
+ <th>建议人:</th>
|
|
|
105
|
+ <td>
|
|
|
106
|
+ {{ orderDetailData.ComplaintUser || '-'}}
|
|
|
107
|
+ </td>
|
|
|
108
|
+ </tr>
|
|
|
109
|
+ <tr v-show="isBY">
|
|
|
110
|
+ <th>表扬部门:</th>
|
|
|
111
|
+ <td colspan="3">
|
|
|
112
|
+ {{ orderDetailData.ComplaintDept || '-'}}
|
|
|
113
|
+ </td>
|
|
|
114
|
+ <th>表扬人:</th>
|
|
|
115
|
+ <td>
|
|
|
116
|
+ {{ orderDetailData.ComplaintUser || '-'}}
|
|
89
|
117
|
</td>
|
|
90
|
118
|
</tr>
|
|
91
|
119
|
<tr>
|
|
|
@@ -297,6 +325,9 @@ export default {
|
|
297
|
325
|
ChatList: [], // 备注详情列表
|
|
298
|
326
|
isChatList: false, // 备注列表是否展示
|
|
299
|
327
|
// isFamily: false,
|
|
|
328
|
+ isTS:false,
|
|
|
329
|
+ isJY:false,
|
|
|
330
|
+ isBY:false,
|
|
300
|
331
|
isSpecial: false,
|
|
301
|
332
|
showAppointmentTime: false,
|
|
302
|
333
|
// isConduit: false,
|
|
|
@@ -401,7 +432,15 @@ export default {
|
|
401
|
432
|
if (thisTypeInfo.tag === "ywzx_zjyy") {
|
|
402
|
433
|
this.isSpecial = true;
|
|
403
|
434
|
}
|
|
404
|
|
-
|
|
|
435
|
+ if(thisTypeInfo.tag === "ywzx_ts"){
|
|
|
436
|
+ this.isTS = true
|
|
|
437
|
+ }
|
|
|
438
|
+ if(thisTypeInfo.tag === "ywzx_jy"){
|
|
|
439
|
+ this.isJY = true
|
|
|
440
|
+ }
|
|
|
441
|
+ if(thisTypeInfo.tag === "ywzx_by"){
|
|
|
442
|
+ this.isBY = true
|
|
|
443
|
+ }
|
|
405
|
444
|
// 家庭预约类服务内容一致,所以需要判断一下二级类别是否是家庭预约 ywzx_jtyy
|
|
406
|
445
|
const twoTypeInfo =
|
|
407
|
446
|
this.$store.getters.workTypeMap[parseInt(thisTypeInfo.ids[1])];
|