|
@@ -1,345 +1,331 @@
|
1
|
1
|
<!-- 报修信息 -->
|
2
|
2
|
<div class="detail" *ngIf="!maskFlag">
|
3
|
|
- <div class="title">报修信息<i class="icon_transport transport-guanbi" (click)="close()"></i></div>
|
4
|
|
- <overlay-scrollbars #osComponentRef1 style="height: 90%; flex: 1">
|
5
|
|
- <div class="content">
|
6
|
|
- <div class="top" *ngIf="amplificationShow">
|
7
|
|
- <div class="num">
|
8
|
|
- <span class="left">报修编号:{{orderInfo.bxcode}}</span>
|
9
|
|
- <span class="right">{{orderInfo.incidentState?orderInfo.incidentState.name:''}}</span>
|
10
|
|
- </div>
|
11
|
|
- <div class="info" nz-row>
|
12
|
|
- <div nz-col nzSpan="8">报修类别:{{orderInfo.category?orderInfo.category.category:''}}</div>
|
13
|
|
- <div nz-col nzSpan="8">报修地址:<ng-container *ngIf="orderInfo.place">{{ orderInfo.place.area.area }} {{ orderInfo.place.place }} {{ orderInfo.address }}</ng-container></div>
|
14
|
|
- <div nz-col nzSpan="24">报修内容:{{orderInfo.description}}</div>
|
15
|
|
- <div nz-col nzSpan="24">报修图片:{{orderInfo.description}}</div>
|
16
|
|
- <div nz-col nzSpan="8">维修人:<ng-container *ngIf="orderInfo.incident&&orderInfo.incident.handlingPersonnelUser">{{ orderInfo.incident.handlingPersonnelUser.name }}</ng-container></div>
|
17
|
|
- <div nz-col nzSpan="8">维修人电话:<ng-container *ngIf="orderInfo.incident&&orderInfo.incident.handlingPersonnelUser">{{ orderInfo.incident.handlingPersonnelUser.phone }}</ng-container></div>
|
18
|
|
- <div nz-col nzSpan="24" *ngIf="processData == '已撤回'">撤回原因:{{ orderInfo.retractReason }}</div>
|
19
|
|
- <div nz-col nzSpan="24" *ngIf="processData == '不受理'">不受理原因:{{ orderInfo.rejectRemark }}</div>
|
|
3
|
+ <div class="title">报修信息<i class="icon_transport transport-guanbi" (click)="close()"></i></div>
|
|
4
|
+ <overlay-scrollbars #osComponentRef1 style="height: 90%; flex: 1">
|
|
5
|
+ <div class="content">
|
|
6
|
+ <div class="top" *ngIf="amplificationShow">
|
|
7
|
+ <div class="num">
|
|
8
|
+ <span class="left">报修编号:{{orderInfo.bxcode}}</span>
|
|
9
|
+ <span class="right">{{orderInfo.incidentState?orderInfo.incidentState.name:''}}</span>
|
|
10
|
+ </div>
|
|
11
|
+ <div class="info" nz-row>
|
|
12
|
+ <div nz-col nzSpan="8">报修类别:{{orderInfo.category?orderInfo.category.category:''}}</div>
|
|
13
|
+ <div nz-col nzSpan="8">报修地址:<ng-container *ngIf="orderInfo.place">{{ orderInfo.place.area.area }} {{ orderInfo.place.place }} {{ orderInfo.address }}</ng-container></div>
|
|
14
|
+ <div nz-col nzSpan="24">报修内容:{{orderInfo.description}}</div>
|
|
15
|
+ <div nz-col nzSpan="24">报修图片:
|
|
16
|
+ <!-- <div class="imgViewHelp">
|
|
17
|
+ <ul id="ljImgViewerId" class="list">
|
|
18
|
+ <img class="mr8" *ngFor="let img of imgs;let i = index;" width="100px" [src]="img" alt="" />
|
|
19
|
+ </ul>
|
|
20
|
+ </div> -->
|
|
21
|
+ <app-image-viewer [imageUrl]="imgs" *ngIf="imgs.length"></app-image-viewer>
|
20
|
22
|
</div>
|
|
23
|
+ <div nz-col nzSpan="8">维修人:<ng-container *ngIf="orderInfo.incident&&orderInfo.incident.handlingPersonnelUser">{{ orderInfo.incident.handlingPersonnelUser.name }}</ng-container></div>
|
|
24
|
+ <div nz-col nzSpan="8">维修人电话:<ng-container *ngIf="orderInfo.incident&&orderInfo.incident.handlingPersonnelUser">{{ orderInfo.incident.handlingPersonnelUser.phone }}</ng-container></div>
|
|
25
|
+ <div nz-col nzSpan="24" *ngIf="processData == '已撤回'">撤回原因:{{ orderInfo.retractReason }}</div>
|
|
26
|
+ <div nz-col nzSpan="24" *ngIf="processData == '不受理'">不受理原因:{{ orderInfo.rejectRemark }}</div>
|
21
|
27
|
</div>
|
22
|
|
- <div class="center" *ngIf="amplificationShow">
|
23
|
|
- <div class="box">
|
24
|
|
- <!-- <div class="steps" *ngFor="let step of logList;let i = index;">
|
25
|
|
- <div class="step">
|
26
|
|
- <div class="info">
|
27
|
|
- <i
|
28
|
|
- [ngClass]="{'icon_transport':true, 'transport-icon_liucheng':true,'green':(step.record&&step.record[0]&&step.record[0].operationTime)}"></i>
|
29
|
|
- <p>{{step.operationName}}</p>
|
30
|
|
- <p>{{step.record.length>=1?(step.record[0].operationTime|date:'MM-dd HH:mm'):''}}</p>
|
31
|
|
- <p *ngIf="step.record[0]&&step.record[0].dept">
|
32
|
|
- <span *ngFor="let dept of step.record">{{!showCoop&&deptDisplay==2?dept.deptalias:dept.dept}},</span>
|
33
|
|
- </p>
|
34
|
|
- <p *ngIf="i!=0&&step.record&&step.record.length">耗时{{filterTime(step.record)}}</p>
|
35
|
|
- </div>
|
36
|
|
- <div class="line"></div>
|
|
28
|
+ </div>
|
|
29
|
+ <div class="center" *ngIf="amplificationShow">
|
|
30
|
+ <div class="box">
|
|
31
|
+ <!-- 流程图 start -->
|
|
32
|
+ <div class="processBox">
|
|
33
|
+ <div
|
|
34
|
+ class="process"
|
|
35
|
+ *ngIf="
|
|
36
|
+ processData == '不受理' ||
|
|
37
|
+ processData == '结束' ||
|
|
38
|
+ processData == '已撤回' ||
|
|
39
|
+ processData == '重复事件'
|
|
40
|
+ "
|
|
41
|
+ >
|
|
42
|
+ <div class="status">
|
|
43
|
+ {{ processMessage[4] ? processMessage[4].name : "" }}
|
37
|
44
|
</div>
|
38
|
|
- </div> -->
|
39
|
|
- <!-- 流程图 start -->
|
40
|
|
- <div class="processBox">
|
41
|
|
- <div
|
42
|
|
- class="process"
|
43
|
|
- *ngIf="
|
44
|
|
- processData == '不受理' ||
|
45
|
|
- processData == '结束' ||
|
46
|
|
- processData == '已撤回' ||
|
47
|
|
- processData == '重复事件'
|
48
|
|
- "
|
49
|
|
- >
|
50
|
|
- <div class="status">
|
51
|
|
- {{ processMessage[4] ? processMessage[4].name : "" }}
|
52
|
|
- </div>
|
53
|
|
- <div class="ico">
|
54
|
|
- <i class="icon_transport transport-icon_liucheng last"></i>
|
55
|
|
- </div>
|
56
|
|
- <div class="time">
|
57
|
|
- <ng-container *ngIf="processTime[4]">
|
58
|
|
- {{processTime[4].startTime | date:"MM-dd HH:mm:ss"}}
|
59
|
|
- </ng-container>
|
60
|
|
- </div>
|
|
45
|
+ <div class="ico">
|
|
46
|
+ <i class="icon_transport transport-icon_liucheng last"></i>
|
61
|
47
|
</div>
|
62
|
|
- <div
|
63
|
|
- class="processCont"
|
64
|
|
- *ngIf="
|
65
|
|
- processData == '不受理' ||
|
66
|
|
- processData == '结束' ||
|
67
|
|
- processData == '已撤回' ||
|
68
|
|
- processData == '重复事件'
|
69
|
|
- "
|
70
|
|
- >
|
71
|
|
- <div class="status"></div>
|
72
|
|
- <div
|
73
|
|
- class="conents"
|
74
|
|
- v-html="processMessage[4] ? processMessage[4].desc : ''"
|
75
|
|
- ></div>
|
|
48
|
+ <div class="time">
|
|
49
|
+ <ng-container *ngIf="processTime[4]">
|
|
50
|
+ {{processTime[4].startTime | date:"MM-dd HH:mm:ss"}}
|
|
51
|
+ </ng-container>
|
76
|
52
|
</div>
|
|
53
|
+ </div>
|
|
54
|
+ <div
|
|
55
|
+ class="processCont"
|
|
56
|
+ *ngIf="
|
|
57
|
+ processData == '不受理' ||
|
|
58
|
+ processData == '结束' ||
|
|
59
|
+ processData == '已撤回' ||
|
|
60
|
+ processData == '重复事件'
|
|
61
|
+ "
|
|
62
|
+ >
|
|
63
|
+ <div class="status"></div>
|
77
|
64
|
<div
|
78
|
|
- class="process"
|
79
|
|
- *ngIf="
|
80
|
|
- processData == '评价' ||
|
81
|
|
- (processData == '结束' && processData != '重复事件')
|
82
|
|
- "
|
83
|
|
- >
|
84
|
|
- <div class="status">
|
85
|
|
- {{ processMessage[3] ? processMessage[3].name : "" }}
|
86
|
|
- </div>
|
87
|
|
- <div class="ico">
|
88
|
|
- <i
|
89
|
|
- class="icon_transport transport-icon_liucheng green now"
|
90
|
|
- *ngIf="processData == '评价'"
|
91
|
|
- ></i>
|
92
|
|
- <i
|
93
|
|
- class="icon_transport transport-icon_liucheng last"
|
94
|
|
- *ngIf="processData != '评价'"
|
95
|
|
- ></i>
|
96
|
|
- </div>
|
97
|
|
- <div class="time">
|
98
|
|
- <ng-container *ngIf="processTime[3]">
|
99
|
|
- {{processTime[3].startTime | date:"MM-dd HH:mm:ss"}}
|
100
|
|
- </ng-container>
|
101
|
|
- </div>
|
|
65
|
+ class="conents"
|
|
66
|
+ [innerHTML]="processMessage[4] ? processMessage[4].desc : ''"
|
|
67
|
+ ></div>
|
|
68
|
+ </div>
|
|
69
|
+ <div
|
|
70
|
+ class="process"
|
|
71
|
+ *ngIf="
|
|
72
|
+ processData == '评价' ||
|
|
73
|
+ (processData == '结束' && processData != '重复事件')
|
|
74
|
+ "
|
|
75
|
+ >
|
|
76
|
+ <div class="status">
|
|
77
|
+ {{ processMessage[3] ? processMessage[3].name : "" }}
|
|
78
|
+ </div>
|
|
79
|
+ <div class="ico">
|
|
80
|
+ <i
|
|
81
|
+ class="icon_transport transport-icon_liucheng green now"
|
|
82
|
+ *ngIf="processData == '评价'"
|
|
83
|
+ ></i>
|
|
84
|
+ <i
|
|
85
|
+ class="icon_transport transport-icon_liucheng last"
|
|
86
|
+ *ngIf="processData != '评价'"
|
|
87
|
+ ></i>
|
102
|
88
|
</div>
|
|
89
|
+ <div class="time">
|
|
90
|
+ <ng-container *ngIf="processTime[3]">
|
|
91
|
+ {{processTime[3].startTime | date:"MM-dd HH:mm:ss"}}
|
|
92
|
+ </ng-container>
|
|
93
|
+ </div>
|
|
94
|
+ </div>
|
|
95
|
+ <div
|
|
96
|
+ class="processCont"
|
|
97
|
+ *ngIf="
|
|
98
|
+ processData == '评价' ||
|
|
99
|
+ (processData == '结束' && processData != '重复事件')
|
|
100
|
+ "
|
|
101
|
+ >
|
|
102
|
+ <div class="status"></div>
|
103
|
103
|
<div
|
104
|
|
- class="processCont"
|
105
|
|
- *ngIf="
|
106
|
|
- processData == '评价' ||
|
107
|
|
- (processData == '结束' && processData != '重复事件')
|
108
|
|
- "
|
109
|
|
- >
|
110
|
|
- <div class="status"></div>
|
|
104
|
+ class="conents"
|
|
105
|
+ [innerHTML]="processMessage[3] ? processMessage[3].desc : ''"
|
|
106
|
+ ></div>
|
|
107
|
+ </div>
|
|
108
|
+ <!-- 处理日志 start -->
|
|
109
|
+ <ng-container *ngIf="orderInfo.incident">
|
|
110
|
+ <div *ngFor="let item of orderInfo.incident.handlerLogs;let i = index;">
|
111
|
111
|
<div
|
112
|
|
- class="conents"
|
113
|
|
- v-html="processMessage[3] ? processMessage[3].desc : ''"
|
114
|
|
- ></div>
|
115
|
|
- </div>
|
116
|
|
- <!-- 处理日志 start -->
|
117
|
|
- <ng-container *ngIf="orderInfo.incident">
|
118
|
|
- <div *ngFor="let item of orderInfo.incident.handlerLogs;let i = index;">
|
119
|
|
- <div
|
120
|
|
- class="process"
|
121
|
|
- *ngIf="
|
122
|
|
- processData == '处理' ||
|
123
|
|
- processData == '评价' ||
|
124
|
|
- (processData == '结束' && processData != '重复事件')
|
125
|
|
- "
|
126
|
|
- >
|
127
|
|
- <div class="status">
|
128
|
|
- {{ processMessage[2] ? processMessage[2].name : "" }}
|
129
|
|
- </div>
|
130
|
|
- <div class="ico">
|
131
|
|
- <i
|
132
|
|
- class="icon_transport transport-icon_liucheng green now"
|
133
|
|
- *ngIf="processData == '处理' && i === 0"
|
134
|
|
- ></i>
|
135
|
|
- <i
|
136
|
|
- class="icon_transport transport-icon_liucheng last"
|
137
|
|
- v-else
|
138
|
|
- ></i>
|
139
|
|
- </div>
|
140
|
|
- <div class="time">
|
141
|
|
- {{ item.opTime | date:"MM-dd HH:mm:ss"}},{{ item.userName }}
|
142
|
|
- </div>
|
|
112
|
+ class="process"
|
|
113
|
+ *ngIf="
|
|
114
|
+ processData == '处理' ||
|
|
115
|
+ processData == '评价' ||
|
|
116
|
+ (processData == '结束' && processData != '重复事件')
|
|
117
|
+ "
|
|
118
|
+ >
|
|
119
|
+ <div class="status">
|
|
120
|
+ {{ processMessage[2] ? processMessage[2].name : "" }}
|
143
|
121
|
</div>
|
144
|
|
- <div
|
145
|
|
- class="processCont"
|
146
|
|
- *ngIf="
|
147
|
|
- processData == '处理' ||
|
148
|
|
- processData == '评价' ||
|
149
|
|
- (processData == '结束' && processData != '重复事件')
|
150
|
|
- "
|
151
|
|
- >
|
152
|
|
- <div class="status"></div>
|
153
|
|
- <div class="conents">{{ item.opValue }}</div>
|
|
122
|
+ <div class="ico">
|
|
123
|
+ <i
|
|
124
|
+ class="icon_transport transport-icon_liucheng green now"
|
|
125
|
+ *ngIf="processData == '处理' && i === 0"
|
|
126
|
+ ></i>
|
|
127
|
+ <i
|
|
128
|
+ class="icon_transport transport-icon_liucheng last"
|
|
129
|
+ *ngIf="!(processData == '处理' && i === 0)"
|
|
130
|
+ ></i>
|
|
131
|
+ </div>
|
|
132
|
+ <div class="time">
|
|
133
|
+ {{ item.opTime | date:"MM-dd HH:mm:ss"}},{{ item.userName }}
|
154
|
134
|
</div>
|
155
|
135
|
</div>
|
156
|
|
- </ng-container>
|
157
|
|
- <!-- 处理日志 end -->
|
158
|
|
- <div
|
159
|
|
- class="process"
|
160
|
|
- *ngIf="
|
161
|
|
- processData == '处理' ||
|
162
|
|
- processData == '评价' ||
|
163
|
|
- (processData == '结束' && processData != '重复事件')
|
164
|
|
- "
|
165
|
|
- >
|
166
|
|
- <div class="status">
|
167
|
|
- {{ processMessage[2] ? processMessage[2].name : "" }}
|
168
|
|
- </div>
|
169
|
|
- <div class="ico">
|
170
|
|
- <i
|
171
|
|
- class="icon_transport transport-icon_liucheng green now"
|
172
|
|
- *ngIf="processData == '处理' && orderInfo.incident && !orderInfo.incident.handlerLogs"
|
173
|
|
- ></i>
|
174
|
|
- <i
|
175
|
|
- class="icon_transport transport-icon_liucheng last"
|
176
|
|
- v-else
|
177
|
|
- ></i>
|
178
|
|
- </div>
|
179
|
|
- <div class="time">
|
180
|
|
- <ng-container *ngIf="processTime[2]">
|
181
|
|
- {{processTime[2].startTime | date:"MM-dd HH:mm:ss"}}
|
182
|
|
- </ng-container>
|
|
136
|
+ <div
|
|
137
|
+ class="processCont"
|
|
138
|
+ *ngIf="
|
|
139
|
+ processData == '处理' ||
|
|
140
|
+ processData == '评价' ||
|
|
141
|
+ (processData == '结束' && processData != '重复事件')
|
|
142
|
+ "
|
|
143
|
+ >
|
|
144
|
+ <div class="status"></div>
|
|
145
|
+ <div class="conents">{{ item.opValue }}</div>
|
183
|
146
|
</div>
|
184
|
147
|
</div>
|
|
148
|
+ </ng-container>
|
|
149
|
+ <!-- 处理日志 end -->
|
|
150
|
+ <div
|
|
151
|
+ class="process"
|
|
152
|
+ *ngIf="
|
|
153
|
+ processData == '处理' ||
|
|
154
|
+ processData == '评价' ||
|
|
155
|
+ (processData == '结束' && processData != '重复事件')
|
|
156
|
+ "
|
|
157
|
+ >
|
|
158
|
+ <div class="status">
|
|
159
|
+ {{ processMessage[2] ? processMessage[2].name : "" }}
|
|
160
|
+ </div>
|
|
161
|
+ <div class="ico">
|
|
162
|
+ <i
|
|
163
|
+ class="icon_transport transport-icon_liucheng green now"
|
|
164
|
+ *ngIf="processData == '处理' && orderInfo.incident && !orderInfo.incident.handlerLogs"
|
|
165
|
+ ></i>
|
|
166
|
+ <i
|
|
167
|
+ class="icon_transport transport-icon_liucheng last"
|
|
168
|
+ v-else
|
|
169
|
+ ></i>
|
|
170
|
+ </div>
|
|
171
|
+ <div class="time">
|
|
172
|
+ <ng-container *ngIf="processTime[2]">
|
|
173
|
+ {{processTime[2].startTime | date:"MM-dd HH:mm:ss"}}
|
|
174
|
+ </ng-container>
|
|
175
|
+ </div>
|
|
176
|
+ </div>
|
|
177
|
+ <div
|
|
178
|
+ class="processCont"
|
|
179
|
+ *ngIf="
|
|
180
|
+ processData == '处理' ||
|
|
181
|
+ processData == '评价' ||
|
|
182
|
+ (processData == '结束' && processData != '重复事件')
|
|
183
|
+ "
|
|
184
|
+ >
|
|
185
|
+ <div class="status"></div>
|
185
|
186
|
<div
|
186
|
|
- class="processCont"
|
187
|
|
- *ngIf="
|
|
187
|
+ class="conents"
|
|
188
|
+ [innerHTML]="processMessage[2] ? processMessage[2].desc : ''"
|
|
189
|
+ ></div>
|
|
190
|
+ </div>
|
|
191
|
+ <div
|
|
192
|
+ class="process"
|
|
193
|
+ *ngIf="
|
|
194
|
+ processData == '受理' ||
|
188
|
195
|
processData == '处理' ||
|
189
|
|
- processData == '评价' ||
|
190
|
|
- (processData == '结束' && processData != '重复事件')
|
191
|
|
- "
|
192
|
|
- >
|
193
|
|
- <div class="status"></div>
|
194
|
|
- <div
|
195
|
|
- class="conents"
|
196
|
|
- v-html="processMessage[2] ? processMessage[2].desc : ''"
|
197
|
|
- ></div>
|
|
196
|
+ processData == '评价' ||
|
|
197
|
+ (processData == '结束' && processData != '重复事件')
|
|
198
|
+ "
|
|
199
|
+ >
|
|
200
|
+ <div class="status">
|
|
201
|
+ {{ processMessage[1] ? processMessage[1].name : "" }}
|
198
|
202
|
</div>
|
199
|
|
- <div
|
200
|
|
- class="process"
|
201
|
|
- *ngIf="
|
202
|
|
- processData == '受理' ||
|
203
|
|
- processData == '处理' ||
|
204
|
|
- processData == '评价' ||
|
205
|
|
- (processData == '结束' && processData != '重复事件')
|
206
|
|
- "
|
207
|
|
- >
|
208
|
|
- <div class="status">
|
209
|
|
- {{ processMessage[1] ? processMessage[1].name : "" }}
|
210
|
|
- </div>
|
211
|
|
- <div class="ico">
|
212
|
|
- <i
|
213
|
|
- class="icon_transport transport-icon_liucheng green now"
|
214
|
|
- *ngIf="processData == '受理'"
|
215
|
|
- ></i>
|
216
|
|
- <i
|
217
|
|
- class="icon_transport transport-icon_liucheng last"
|
218
|
|
- *ngIf="processData != '受理'"
|
219
|
|
- ></i>
|
220
|
|
- </div>
|
221
|
|
- <div class="time">
|
222
|
|
- <ng-container *ngIf="processTime[1]">
|
223
|
|
- {{processTime[1].startTime | date:'MM-dd HH:mm:ss'}}
|
224
|
|
- </ng-container>
|
225
|
|
- </div>
|
|
203
|
+ <div class="ico">
|
|
204
|
+ <i
|
|
205
|
+ class="icon_transport transport-icon_liucheng green now"
|
|
206
|
+ *ngIf="processData == '受理'"
|
|
207
|
+ ></i>
|
|
208
|
+ <i
|
|
209
|
+ class="icon_transport transport-icon_liucheng last"
|
|
210
|
+ *ngIf="processData != '受理'"
|
|
211
|
+ ></i>
|
|
212
|
+ </div>
|
|
213
|
+ <div class="time">
|
|
214
|
+ <ng-container *ngIf="processTime[1]">
|
|
215
|
+ {{processTime[1].startTime | date:'MM-dd HH:mm:ss'}}
|
|
216
|
+ </ng-container>
|
226
|
217
|
</div>
|
|
218
|
+ </div>
|
|
219
|
+ <div
|
|
220
|
+ class="processCont"
|
|
221
|
+ *ngIf="
|
|
222
|
+ processData == '受理' ||
|
|
223
|
+ processData == '处理' ||
|
|
224
|
+ processData == '评价' ||
|
|
225
|
+ (processData == '结束' && processData != '重复事件')
|
|
226
|
+ "
|
|
227
|
+ >
|
|
228
|
+ <div class="status"></div>
|
227
|
229
|
<div
|
228
|
|
- class="processCont"
|
229
|
|
- *ngIf="
|
230
|
|
- processData == '受理' ||
|
231
|
|
- processData == '处理' ||
|
232
|
|
- processData == '评价' ||
|
233
|
|
- (processData == '结束' && processData != '重复事件')
|
234
|
|
- "
|
235
|
|
- >
|
236
|
|
- <div class="status"></div>
|
237
|
|
- <div
|
238
|
|
- class="conents"
|
239
|
|
- v-html="processMessage[1] ? processMessage[1].desc : ''"
|
240
|
|
- ></div>
|
|
230
|
+ class="conents"
|
|
231
|
+ [innerHTML]="processMessage[1] ? processMessage[1].desc : ''"
|
|
232
|
+ ></div>
|
|
233
|
+ </div>
|
|
234
|
+ <div class="process">
|
|
235
|
+ <div class="status">
|
|
236
|
+ {{ processMessage[0] ? processMessage[0].name : "" }}
|
241
|
237
|
</div>
|
242
|
|
- <div class="process">
|
243
|
|
- <div class="status">
|
244
|
|
- {{ processMessage[0] ? processMessage[0].name : "" }}
|
245
|
|
- </div>
|
246
|
|
- <div class="ico">
|
247
|
|
- <i
|
248
|
|
- class="icon_transport transport-icon_liucheng green now"
|
249
|
|
- *ngIf="processData == '申请'"
|
250
|
|
- ></i>
|
251
|
|
- <i
|
252
|
|
- class="icon_transport transport-icon_liucheng last"
|
253
|
|
- *ngIf="processData != '申请'"
|
254
|
|
- ></i>
|
255
|
|
- </div>
|
256
|
|
- <div class="time">
|
257
|
|
- <ng-container *ngIf="processTime[0]">
|
258
|
|
- {{processTime[0].startTime | date:"MM-dd HH:mm:ss"}}
|
259
|
|
- </ng-container>
|
260
|
|
- </div>
|
|
238
|
+ <div class="ico">
|
|
239
|
+ <i
|
|
240
|
+ class="icon_transport transport-icon_liucheng green now"
|
|
241
|
+ *ngIf="processData == '申请'"
|
|
242
|
+ ></i>
|
|
243
|
+ <i
|
|
244
|
+ class="icon_transport transport-icon_liucheng last"
|
|
245
|
+ *ngIf="processData != '申请'"
|
|
246
|
+ ></i>
|
261
|
247
|
</div>
|
262
|
|
- <div class="processCont">
|
263
|
|
- <div class="status"></div>
|
264
|
|
- <div
|
265
|
|
- class="conents lastConents"
|
266
|
|
- v-html="processMessage[0] ? processMessage[0].desc : ''"
|
267
|
|
- ></div>
|
|
248
|
+ <div class="time">
|
|
249
|
+ <ng-container *ngIf="processTime[0]">
|
|
250
|
+ {{processTime[0].startTime | date:"MM-dd HH:mm:ss"}}
|
|
251
|
+ </ng-container>
|
268
|
252
|
</div>
|
269
|
253
|
</div>
|
270
|
|
- <!-- 流程图 end -->
|
|
254
|
+ <div class="processCont">
|
|
255
|
+ <div class="status"></div>
|
|
256
|
+ <div
|
|
257
|
+ class="conents lastConents"
|
|
258
|
+ [innerHTML]="processMessage[0] ? processMessage[0].desc : ''"
|
|
259
|
+ ></div>
|
|
260
|
+ </div>
|
271
|
261
|
</div>
|
|
262
|
+ <!-- 流程图 end -->
|
272
|
263
|
</div>
|
273
|
|
- <div class="bottom" *ngIf="orderInfo.urgentDetails&&showCoop">
|
274
|
|
- <div class="urgent">
|
275
|
|
- <div>
|
276
|
|
- <ng-container *ngIf="amplificationShow&&orderInfo.urgentDetails&&showCoop">
|
277
|
|
- 加急原因:{{orderInfo.urgentDetails.urgentReason}}
|
278
|
|
- <button *ngIf="orderInfo.urgentDetails.checkStatus.id==329" class=" btn default" nz-button nzType="primary"
|
279
|
|
- [nzLoading]="urgentLoading" nzGhost (click)="urgent()">确认加急</button>
|
280
|
|
- </ng-container>
|
281
|
|
- </div>
|
282
|
|
- <div class="amplification">
|
283
|
|
- <button
|
284
|
|
- nz-button
|
285
|
|
- nzType="primary"
|
286
|
|
- class="btn default"
|
287
|
|
- (click)="amplification()"
|
288
|
|
- >
|
289
|
|
- {{ amplificationShow ? "放大" : "还原" }}
|
290
|
|
- </button>
|
291
|
|
- </div>
|
|
264
|
+ </div>
|
|
265
|
+ <div class="bottom" *ngIf="orderInfo.urgentDetails&&showCoop">
|
|
266
|
+ <div class="urgent">
|
|
267
|
+ <div>
|
|
268
|
+ <ng-container *ngIf="amplificationShow&&orderInfo.urgentDetails&&showCoop">
|
|
269
|
+ 加急原因:{{orderInfo.urgentDetails.urgentReason}}
|
|
270
|
+ <button *ngIf="orderInfo.urgentDetails.checkStatus.id==329" class=" btn default" nz-button nzType="primary"
|
|
271
|
+ [nzLoading]="urgentLoading" nzGhost (click)="urgent()">确认加急</button>
|
|
272
|
+ </ng-container>
|
|
273
|
+ </div>
|
|
274
|
+ <div class="amplification">
|
|
275
|
+ <button
|
|
276
|
+ nz-button
|
|
277
|
+ nzType="primary"
|
|
278
|
+ class="btn default"
|
|
279
|
+ (click)="amplification()"
|
|
280
|
+ >
|
|
281
|
+ {{ amplificationShow ? "放大" : "还原" }}
|
|
282
|
+ </button>
|
292
|
283
|
</div>
|
293
|
284
|
</div>
|
294
|
285
|
</div>
|
295
|
|
- </overlay-scrollbars>
|
296
|
|
- <div class="btns display_flex justify-content_flex-center">
|
297
|
|
- <!-- <button *ngIf="showCoop&&orderInfo.gdState.id==69" nz-button nzType="primary" [nzLoading]="isOkLoading"
|
298
|
|
- (click)='allotWorker()'>派单</button>
|
299
|
|
- <button *ngIf="showCoop&&(orderInfo.gdState.id==70||orderInfo.gdState.id==71)" nz-button nzType="primary" nzGhost
|
300
|
|
- (click)="openRecallModal()">撤回</button>
|
301
|
|
- <button *ngIf="showCoop&&(orderInfo.gdState.id==69||orderInfo.gdState.id==70||orderInfo.gdState.id==71)" nz-button
|
302
|
|
- nzType="danger" (click)="openDelModal()">删除</button> -->
|
303
|
|
- <button class=" btn cancel" nz-button nzType="default" (click)="close()">取消</button>
|
304
|
286
|
</div>
|
|
287
|
+ </overlay-scrollbars>
|
|
288
|
+ <div class="btns display_flex justify-content_flex-center">
|
|
289
|
+ <button class=" btn cancel" nz-button nzType="default" (click)="close()">取消</button>
|
305
|
290
|
</div>
|
|
291
|
+</div>
|
306
|
292
|
|
307
|
|
- <!-- 撤回工单 -->
|
308
|
|
- <div class="recallOrder" *ngIf="recallOrderShow">
|
309
|
|
- <div class="modalBody">
|
310
|
|
- <div class="title">提示<i class="icon_transport transport-guanbi" (click)="closeRecallOrderModal()"></i></div>
|
311
|
|
- <div class="content">
|
312
|
|
- <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
|
313
|
|
- <div class="defeat">您确认要撤回此工单吗?</div>
|
314
|
|
- </div>
|
315
|
|
- <div class="btns display_flex justify-content_flex-center">
|
316
|
|
- <button nz-button nzType="primary" [nzLoading]='btnLoading' (click)="confirmRec()">确认</button>
|
317
|
|
- <button nz-button nzType="primary" [nzLoading]='recLoading' nzGhost (click)="recAndDel()">撤回并删除</button>
|
318
|
|
- <button class=" btn cancel" nz-button nzType="default" (click)="closeRecallOrderModal()">取消</button>
|
319
|
|
- </div>
|
|
293
|
+<!-- 撤回工单 -->
|
|
294
|
+<div class="recallOrder" *ngIf="recallOrderShow">
|
|
295
|
+ <div class="modalBody">
|
|
296
|
+ <div class="title">提示<i class="icon_transport transport-guanbi" (click)="closeRecallOrderModal()"></i></div>
|
|
297
|
+ <div class="content">
|
|
298
|
+ <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
|
|
299
|
+ <div class="defeat">您确认要撤回此工单吗?</div>
|
|
300
|
+ </div>
|
|
301
|
+ <div class="btns display_flex justify-content_flex-center">
|
|
302
|
+ <button nz-button nzType="primary" [nzLoading]='btnLoading' (click)="confirmRec()">确认</button>
|
|
303
|
+ <button nz-button nzType="primary" [nzLoading]='recLoading' nzGhost (click)="recAndDel()">撤回并删除</button>
|
|
304
|
+ <button class=" btn cancel" nz-button nzType="default" (click)="closeRecallOrderModal()">取消</button>
|
320
|
305
|
</div>
|
321
|
306
|
</div>
|
322
|
|
-
|
323
|
|
- <!-- 删除工单 -->
|
324
|
|
- <div class="recallOrder delModel" *ngIf="delOrderShow">
|
325
|
|
- <div class="modalBody">
|
326
|
|
- <div class="title">提示<i class="icon_transport transport-guanbi" (click)="closeDelOrderModal()"></i></div>
|
327
|
|
- <div class="content">
|
328
|
|
- <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
|
329
|
|
- <div class="defeat">您确认要删除此工单吗?</div>
|
330
|
|
- </div>
|
331
|
|
- <div class="btns display_flex justify-content_flex-center">
|
332
|
|
- <button nz-button nzType="primary" [nzLoading]='btnLoading' (click)="confirmDel()">确认</button>
|
333
|
|
- <button class="btn cancel" nz-button nzType="default" (click)="closeDelOrderModal()">关闭</button>
|
334
|
|
- </div>
|
|
307
|
+</div>
|
|
308
|
+
|
|
309
|
+<!-- 删除工单 -->
|
|
310
|
+<div class="recallOrder delModel" *ngIf="delOrderShow">
|
|
311
|
+ <div class="modalBody">
|
|
312
|
+ <div class="title">提示<i class="icon_transport transport-guanbi" (click)="closeDelOrderModal()"></i></div>
|
|
313
|
+ <div class="content">
|
|
314
|
+ <div class="icon"><i class="icon_transport transport-wenhao"></i></div>
|
|
315
|
+ <div class="defeat">您确认要删除此工单吗?</div>
|
|
316
|
+ </div>
|
|
317
|
+ <div class="btns display_flex justify-content_flex-center">
|
|
318
|
+ <button nz-button nzType="primary" [nzLoading]='btnLoading' (click)="confirmDel()">确认</button>
|
|
319
|
+ <button class="btn cancel" nz-button nzType="default" (click)="closeDelOrderModal()">关闭</button>
|
335
|
320
|
</div>
|
336
|
321
|
</div>
|
337
|
|
-
|
338
|
|
- <!-- 操作成功/失败提示框 -->
|
339
|
|
- <app-prompt-modal *ngIf="promptModalShow" [content]="promptContent" [success]="ifSuccess" [show]="promptModalShow"
|
340
|
|
- [info]="promptInfo" (closeModel)="close()">
|
341
|
|
- <!-- 2.父组件调用子组件时绑定到这个事件属性,并在事件发生时作出回应。(closeModel)="close()" -->
|
342
|
|
- </app-prompt-modal>
|
343
|
|
- <!-- 遮罩 -->
|
344
|
|
- <app-mask *ngIf="maskFlag"></app-mask>
|
|
322
|
+</div>
|
|
323
|
+
|
|
324
|
+<!-- 操作成功/失败提示框 -->
|
|
325
|
+<app-prompt-modal *ngIf="promptModalShow" [content]="promptContent" [success]="ifSuccess" [show]="promptModalShow"
|
|
326
|
+ [info]="promptInfo" (closeModel)="close()">
|
|
327
|
+ <!-- 2.父组件调用子组件时绑定到这个事件属性,并在事件发生时作出回应。(closeModel)="close()" -->
|
|
328
|
+</app-prompt-modal>
|
|
329
|
+<!-- 遮罩 -->
|
|
330
|
+<app-mask *ngIf="maskFlag"></app-mask>
|
345
|
331
|
|