|
|
@@ -83,37 +83,37 @@
|
|
83
|
83
|
</td>
|
|
84
|
84
|
</tr>
|
|
85
|
85
|
<tr v-show="isTS">
|
|
86
|
|
- <th>投诉来源:</th>
|
|
|
86
|
+ <!-- <th>投诉来源:</th>
|
|
87
|
87
|
<td>
|
|
88
|
88
|
{{ orderDetailData.SourceName || "-" }}
|
|
89
|
|
- </td>
|
|
|
89
|
+ </td> -->
|
|
90
|
90
|
<th>投诉科室:</th>
|
|
91
|
91
|
<td>
|
|
92
|
|
- {{ orderDetailData.ComplaintDept || '-'}}
|
|
|
92
|
+ {{ orderDetailData.ComplaintDept || "-" }}
|
|
93
|
93
|
</td>
|
|
94
|
94
|
<th>投诉人:</th>
|
|
95
|
95
|
<td>
|
|
96
|
|
- {{ orderDetailData.ComplaintUser || '-'}}
|
|
|
96
|
+ {{ orderDetailData.ComplaintUser || "-" }}
|
|
97
|
97
|
</td>
|
|
98
|
98
|
</tr>
|
|
99
|
99
|
<tr v-show="isJY">
|
|
100
|
100
|
<th>建议科室:</th>
|
|
101
|
101
|
<td colspan="3">
|
|
102
|
|
- {{ orderDetailData.ComplaintDept || '-'}}
|
|
|
102
|
+ {{ orderDetailData.ComplaintDept || "-" }}
|
|
103
|
103
|
</td>
|
|
104
|
104
|
<th>建议人:</th>
|
|
105
|
105
|
<td>
|
|
106
|
|
- {{ orderDetailData.ComplaintUser || '-'}}
|
|
|
106
|
+ {{ orderDetailData.ComplaintUser || "-" }}
|
|
107
|
107
|
</td>
|
|
108
|
108
|
</tr>
|
|
109
|
109
|
<tr v-show="isBY">
|
|
110
|
110
|
<th>表扬科室:</th>
|
|
111
|
111
|
<td colspan="3">
|
|
112
|
|
- {{ orderDetailData.ComplaintDept || '-'}}
|
|
|
112
|
+ {{ orderDetailData.ComplaintDept || "-" }}
|
|
113
|
113
|
</td>
|
|
114
|
114
|
<th>表扬人:</th>
|
|
115
|
115
|
<td>
|
|
116
|
|
- {{ orderDetailData.ComplaintUser || '-'}}
|
|
|
116
|
+ {{ orderDetailData.ComplaintUser || "-" }}
|
|
117
|
117
|
</td>
|
|
118
|
118
|
</tr>
|
|
119
|
119
|
<tr>
|
|
|
@@ -122,7 +122,9 @@
|
|
122
|
122
|
</tr>
|
|
123
|
123
|
<tr>
|
|
124
|
124
|
<th>工单内容:</th>
|
|
125
|
|
- <td colspan="5">{{ orderDetailData.F_WorkOrderContents || '-' }}</td>
|
|
|
125
|
+ <td colspan="5">
|
|
|
126
|
+ {{ orderDetailData.F_WorkOrderContents || "-" }}
|
|
|
127
|
+ </td>
|
|
126
|
128
|
</tr>
|
|
127
|
129
|
</table>
|
|
128
|
130
|
</el-col>
|
|
|
@@ -326,9 +328,9 @@ export default {
|
|
326
|
328
|
ChatList: [], // 备注详情列表
|
|
327
|
329
|
isChatList: false, // 备注列表是否展示
|
|
328
|
330
|
// isFamily: false,
|
|
329
|
|
- isTS:false,
|
|
330
|
|
- isJY:false,
|
|
331
|
|
- isBY:false,
|
|
|
331
|
+ isTS: false,
|
|
|
332
|
+ isJY: false,
|
|
|
333
|
+ isBY: false,
|
|
332
|
334
|
isSpecial: false,
|
|
333
|
335
|
showAppointmentTime: false,
|
|
334
|
336
|
// isConduit: false,
|
|
|
@@ -385,7 +387,7 @@ export default {
|
|
385
|
387
|
created() {
|
|
386
|
388
|
this.getDetail("0");
|
|
387
|
389
|
this.getDetail("1");
|
|
388
|
|
- if(this.xqdepts.indexOf(window.localStorage.getItem("deptId")) >= 0) {
|
|
|
390
|
+ if (this.xqdepts.indexOf(window.localStorage.getItem("deptId")) >= 0) {
|
|
389
|
391
|
this.iscxx = true;
|
|
390
|
392
|
}
|
|
391
|
393
|
},
|
|
|
@@ -432,17 +434,17 @@ export default {
|
|
432
|
434
|
if (thisTypeInfo.tag === "ywzx_zjyy") {
|
|
433
|
435
|
this.isSpecial = true;
|
|
434
|
436
|
}
|
|
435
|
|
- if(thisTypeInfo.tag === "ywzx_ts"){
|
|
436
|
|
- this.isTS = true
|
|
|
437
|
+ if (thisTypeInfo.tag === "ywzx_ts") {
|
|
|
438
|
+ this.isTS = true;
|
|
437
|
439
|
}
|
|
438
|
|
- if(thisTypeInfo.tag === "ywzx_jy"){
|
|
439
|
|
- this.isJY = true
|
|
|
440
|
+ if (thisTypeInfo.tag === "ywzx_jy") {
|
|
|
441
|
+ this.isJY = true;
|
|
440
|
442
|
}
|
|
441
|
|
- if(thisTypeInfo.tag === "ywzx_by"){
|
|
442
|
|
- this.isBY = true
|
|
|
443
|
+ if (thisTypeInfo.tag === "ywzx_by") {
|
|
|
444
|
+ this.isBY = true;
|
|
443
|
445
|
}
|
|
444
|
|
- if(thisTypeInfo.tag === "ywzx_lasc"){
|
|
445
|
|
- this.showAppointmentTime = true
|
|
|
446
|
+ if (thisTypeInfo.tag === "ywzx_lasc") {
|
|
|
447
|
+ this.showAppointmentTime = true;
|
|
446
|
448
|
}
|
|
447
|
449
|
// 家庭预约类服务内容一致,所以需要判断一下二级类别是否是家庭预约 ywzx_jtyy
|
|
448
|
450
|
// const twoTypeInfo =
|