QualityResult.vue
13.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
<template>
<div class="quality-result-container">
<el-card>
<template #header>
<div class="card-header">
<span>质检结果列表</span>
</div>
</template>
<div class="filter-section">
<el-row :gutter="20" style="margin-bottom: 20px;">
<el-col :span="5" style="margin-right: 20px;">
<el-date-picker
v-model="filterForm.finishTime"
type="daterange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
format="YYYY-MM-DD"
value-format="YYYY-MM-DD"
style="width: 100%;"
>
</el-date-picker>
</el-col>
<el-col :span="4">
<el-input
v-model="filterForm.accNbr"
placeholder="用户账号"
clearable
></el-input>
</el-col>
<el-col :span="4">
<el-input
v-model="filterForm.campaignId"
placeholder="工维人员工号"
clearable
></el-input>
</el-col>
<el-col :span="4">
<el-input
v-model="filterForm.orderId"
placeholder="工单ID"
clearable
></el-input>
</el-col>
<el-col :span="4">
<el-select
v-model="filterForm.finishStatusList"
placeholder="质检结果"
clearable
multiple
style="width: 100%"
>
<el-option v-for="result in pagination.resultList" :key="result.value" :label="result.label" :value="result.value"></el-option>
</el-select>
</el-col>
<el-col :span="4" style="margin-top: 10px;">
<el-button type="primary" @click="handleFilter">查询</el-button>
<el-button @click="resetFilter">重置</el-button>
</el-col>
</el-row>
</div>
<el-table :data="tableData" :height="tableForm.height" border style="width: 100%">
<el-table-column prop="applyId" label="质检ID" width="200"></el-table-column>
<el-table-column prop="accNbr" label="用户账号" width="150"></el-table-column>
<el-table-column prop="addressName" label="装机地址" width="230" show-overflow-tooltip></el-table-column>
<el-table-column prop="orderType" label="工单类型" width="250" show-overflow-tooltip></el-table-column>
<el-table-column prop="campaignId" label="工维人员工号" width="150"></el-table-column>
<el-table-column prop="orderCode" label="工单ID" width="230" show-overflow-tooltip></el-table-column>
<el-table-column prop="deviceType" label="设备类型" width="230" show-overflow-tooltip></el-table-column>
<el-table-column prop="finishTime" label="质检完成时间" width="180"></el-table-column>
<el-table-column prop="finish" label="质检结果" width="100">
<template #default="scope">
<el-tag
:type="getResultTagType(scope.row.finish,scope.row.checkStatus)"
>
{{ getResultText(scope.row.finish,scope.row.checkStatus) }}
</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" width="120" fixed="right" align="center">
<template #default="scope">
<el-button
size="small"
type="primary"
@click="viewDetail(scope.row)"
:disabled="scope.row.finish==0"
>
查看详情
</el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination-container" style="margin-top: 20px; text-align: right;">
<el-pagination
:current-page="pagination.currentPage"
:page-size="pagination.pageSize"
:total="pagination.total"
:page-sizes="pagination.pageSizes"
@sizeChange="handleSizeChange"
layout="total, prev, pager, next, jumper,sizes"
@current-change="handlePageChange"
>
</el-pagination>
</div>
<!-- 质检详情弹窗 -->
<el-dialog
v-model="detailForm.isShow"
title="质检详情"
width="800px"
:before-close="handleClose"
top="5vh"
style="height: 90vh;overflow:auto;"
class="detail-dialog">
<div class="inner">
<!-- 基础信息 -->
<div class="detail-section">
<h3 class="section-title">基础信息</h3>
<div class="info-grid">
<div class="infoList">
<div class="li">
<div class="name">质检ID</div>
<div class="value">{{ detailForm.data.applyId || '--' }}</div>
</div>
<div class="li">
<div class="name">用户账号</div>
<div class="value">{{ detailForm.data.accNbr || '--' }}</div>
</div>
<div class="li">
<div class="name">工维人员</div>
<div class="value">{{ detailForm.data.campaignId || '--' }}</div>
</div>
</div>
<div class="infoList">
<div class="li">
<div class="name">装机地址</div>
<div class="value">{{ detailForm.data.addressName || '--' }}</div>
</div>
</div>
<div class="infoList">
<div class="li">
<div class="name">工单类型</div>
<div class="value">{{ detailForm.data.serviceNames || '--' }}</div>
</div>
<div class="li">
<div class="name">工单ID</div>
<div class="value">{{ detailForm.data.orderCode || '--' }}</div>
</div>
<div class="li">
<div class="name">设备类型</div>
<div class="value">{{ detailForm.data.terminalClass || '--' }}</div>
</div>
</div>
<div class="infoList">
<div class="li">
<div class="name">质检开始时间</div>
<div class="value">{{ detailForm.data.startTime || '--' }}</div>
</div>
<div class="li">
<div class="name">质检结束时间</div>
<div class="value">{{ detailForm.data.endTime || '--' }}</div>
</div>
<div class="li">
<div class="name">是否完成</div>
<div class="value">{{ getResultText(detailForm.data.finish,detailForm.data.checkStatus)}}</div>
<div v-if="detailForm.data.failReason">原因:{{detailForm.data.failReason}}</div>
</div>
</div>
</div>
</div>
<!-- 质检详情表格 -->
<div class="detail-section" v-if="detailForm.data.items && detailForm.data.items.length > 0">
<h3 class="section-title">质检详情</h3>
<el-table :data="detailForm.data.items" border style="width: 100%;">
<el-table-column prop="dec" label="检查项" width="200"></el-table-column>
<el-table-column prop="result" label="检查结果" width="150"></el-table-column>
<el-table-column prop="picUrl" label="现场快照">
<template #default="scope">
<el-image
v-for="(item,index) in scope.row.picArr"
:src="item"
:initial-index="index"
:preview-src-list="scope.row.picArr"
style="width: 60px; height: 60px;"
/>
</template>
</el-table-column>
</el-table>
</div>
<!-- 质检录像 -->
<div class="detail-section">
<h3 class="section-title">质检录像</h3>
<div class="video-container">
<template v-if="detailForm.data.videos.length>0">
<video
v-for="item in detailForm.data.videos"
:src="item.videoUrl"
controls
style="width: calc(100% - 2px); max-height: 300px;border:1px solid #ebebeb;"
></video>
</template>
<div v-else class="no-video">
<div class="up">质检视频正在生成中</div>
<div class="down">预计次日凌晨完成,请稍后查看</div>
</div>
</div>
</div>
</div>
</el-dialog>
</el-card>
</div>
</template>
<script setup>
import { ref, reactive, onMounted } from 'vue'
import { useRouter } from 'vue-router'
import { ElMessage } from 'element-plus'
import { getQualityResults , getQualityResultsDetail} from '../utils/api'
const router = useRouter()
const filterForm = reactive({
finishTime: '',
accNbr: '',
campaignId: '',
orderId: '',
finishStatusList: []
})
const detailForm = reactive({
isShow: false,
data: {}
})
const pagination = reactive({
currentPage: 1,
pageSize: 20,
pageSizes: [20, 50, 100],
total: 0,
resultList: [{
label: '未完成',
value: '0'
},{
label: '已完成',
value: '1'
},{
label: '无法质检',
value: '2'
}]
})
const tableForm = reactive({
height: window.top.document.body.offsetHeight - 388
})
const handleSizeChange = (newSize) => {
pagination.pageSize = newSize;
pagination.currentPage = 1;
handleFilter();
};
const tableData = ref([])
const handleFilter = async () => {
try {
const params = {
pageNum: pagination.currentPage,
pageSize: pagination.pageSize,
accNbr: filterForm.accNbr,
campaignId: filterForm.campaignId,
orderId: filterForm.orderId,
finishStatusList: filterForm.finishStatusList
};
let fn = (dateString)=>{
const date = new Date(dateString);
date.setDate(date.getDate() + 1);
const year = date.getFullYear();
const month = String(date.getMonth() + 1).padStart(2, '0');
const day = String(date.getDate()).padStart(2, '0');
return `${year}-${month}-${day}`;
}
if (filterForm.finishTime && filterForm.finishTime.length === 2) {
params.finishStartTime = filterForm.finishTime[0];
params.finishEndTime = fn(filterForm.finishTime[1]);
}
const response = await getQualityResults(params);
if (response.code === 200) {
tableData.value = response.data.records || [];
pagination.total = response.data.total;
ElMessage.success('查询成功');
} else {
ElMessage.error(response.msg || '查询失败');
}
} catch (error) {
ElMessage.error('查询失败: ' + error.message);
}
}
const resetFilter = () => {
filterForm.finishTime = '';
filterForm.accNbr = ''
filterForm.campaignId = '',
filterForm.orderId = '',
filterForm.finishStatusList = []
handleFilter();
}
const getResultText = (result,status) => {
let ret = '未知'
if(result==1 && status>1){
result = '2'
}
pagination.resultList.forEach(item => {
if(item.value == result) {
ret = item.label
}
})
return ret
}
const getResultTagType = (result,status) => {
const typeMap = {
0: 'info',
2: 'warning',
1: 'success'
}
if(result==1 && status>1){
result = '2'
}
return typeMap[result] || 'info'
}
const viewDetail = async (row) => {
let res = await getQualityResultsDetail({
applyId: row.applyId
})
res.data.items.forEach(item=>{
item.picArr = item.picUrl.split(',')
//item.picArr = ['https://hhzj.lgyzpt.com/huaiHuaPc/assets/logo-D9UGterv.png','https://hhzj.lgyzpt.com/huaiHuaPc/assets/bg-C097ZT0U.png']
item.furl = item.picArr[0]||''
})
detailForm.isShow = true
detailForm.data = res.data
}
const handlePageChange = (page) => {
pagination.currentPage = page;
handleFilter();
}
const handleClose = () => {
detailForm.isShow = false
}
onMounted(() => {
handleFilter();
})
</script>
<style scoped>
.quality-result-container {
padding: 20px;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.detail-dialog .inner{
height: calc(100vh - 161px);
overflow: auto;
}
.detail-dialog .inner :deep(.el-table__cell){
position: unset!important;
}
.info-grid {
background: #F7F8FA;
border-radius: 4px;
padding: 20px;
}
.info-grid .infoList{
display: flex;
margin-bottom: 30px;
}
.info-grid .infoList .li{
width: 250px;
margin-right: 20px;
}
.info-grid .infoList .name{
font-size: 16px;
font-weight: 500;
}
.section-title{
font-weight: bold;
font-size: 18px;
color: #333;
}
.info-grid .infoList .value{
font-size: 15px;
margin-top: 5px;
}
.info-grid .infoList:last-child{
margin-bottom: 0;
}
.no-video{
background: #F7F8FA;
border-radius: 4px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 200px;
}
.no-video .up{
font-size: 18px;
font-weight: 600;
margin-bottom: 8px;
}
.no-video .down{
font-size: 15px;
}
</style>