|
@@ -148,17 +148,23 @@
|
148
|
148
|
:visible.sync="dialogVisible2"
|
149
|
149
|
width="45%"
|
150
|
150
|
custom-class="audit-dialog">
|
151
|
|
- <el-row class="mg-bt">
|
152
|
|
- <el-col class="label" :span="4">审核:</el-col>
|
153
|
|
- <el-col :span="18">
|
154
|
|
- <el-radio v-model="radio" label="2">通过</el-radio>
|
155
|
|
- <el-radio v-model="radio" label="3">驳回</el-radio>
|
156
|
|
- </el-col>
|
157
|
|
- </el-row>
|
158
|
|
- <span slot="footer" class="dialog-footer">
|
|
151
|
+ <div class="form-div">
|
|
152
|
+ <el-form label-position="left" class="form-wrapper" :model="formLabelAlign2" style="margin-bottom: 20px;">
|
|
153
|
+ <el-form-item label="审核: ">
|
|
154
|
+ <el-radio-group v-model="formLabelAlign2.auditStatus">
|
|
155
|
+ <el-radio label='通过'>通过</el-radio>
|
|
156
|
+ <el-radio label='驳回'>驳回</el-radio>
|
|
157
|
+ </el-radio-group>
|
|
158
|
+ </el-form-item>
|
|
159
|
+ <el-form-item label="备注: ">
|
|
160
|
+ <el-input type="textarea" :rows="2" placeholder="请输入内容" v-model="formLabelAlign2.auditResult"/>
|
|
161
|
+ </el-form-item>
|
|
162
|
+ </el-form>
|
|
163
|
+ <span slot="footer" class="dialog-footer">
|
159
|
164
|
<el-button @click="dialogVisible2 = false">取 消</el-button>
|
160
|
165
|
<el-button type="primary" @click="handleConfirm2">确 定</el-button>
|
161
|
166
|
</span>
|
|
167
|
+ </div>
|
162
|
168
|
</el-dialog>
|
163
|
169
|
|
164
|
170
|
<div style="font-size: large;margin-bottom: 30px">处理记录</div>
|
|
@@ -207,8 +213,8 @@ export default {
|
207
|
213
|
activeName: '稽查配置',
|
208
|
214
|
columns1: [
|
209
|
215
|
{
|
210
|
|
- label: '稽查对象',
|
211
|
|
- key: 'parkId'
|
|
216
|
+ label: '稽查地点',
|
|
217
|
+ key: 'carParkName'
|
212
|
218
|
},
|
213
|
219
|
{
|
214
|
220
|
label: '取证类型',
|
|
@@ -246,11 +252,11 @@ export default {
|
246
|
252
|
columns2: [
|
247
|
253
|
{
|
248
|
254
|
label: '稽查对象',
|
249
|
|
- key: 'evidenceTollmanId'
|
|
255
|
+ key: 'evidenceTollmanName'
|
250
|
256
|
},
|
251
|
257
|
{
|
252
|
258
|
label: '取证类型',
|
253
|
|
- key: 'evidenceId'
|
|
259
|
+ key: 'evidenceType'
|
254
|
260
|
},
|
255
|
261
|
{
|
256
|
262
|
label: '问题描述',
|
|
@@ -263,7 +269,7 @@ export default {
|
263
|
269
|
],
|
264
|
270
|
tableData2: [],
|
265
|
271
|
total2: 0,
|
266
|
|
- radio: '2',
|
|
272
|
+ radio: '通过',
|
267
|
273
|
pageSize2: 10,
|
268
|
274
|
pageNum2: 1,
|
269
|
275
|
formInline2: {
|
|
@@ -273,18 +279,17 @@ export default {
|
273
|
279
|
dialogVisible2: false,
|
274
|
280
|
formLabelAlign2: {
|
275
|
281
|
id: '',
|
276
|
|
- evidenceTollmanId: '',
|
277
|
|
- evidenceId: '',
|
278
|
|
- problemDescription: '',
|
|
282
|
+ auditStatus: '',
|
|
283
|
+ auditResult: ''
|
279
|
284
|
},
|
280
|
285
|
columns3: [
|
281
|
286
|
{
|
282
|
287
|
label: '稽查对象',
|
283
|
|
- key: 'evidenceTollmanId'
|
|
288
|
+ key: 'evidenceTollmanName'
|
284
|
289
|
},
|
285
|
290
|
{
|
286
|
291
|
label: '取证类型',
|
287
|
|
- key: 'evidenceId'
|
|
292
|
+ key: 'evidenceType'
|
288
|
293
|
},
|
289
|
294
|
{
|
290
|
295
|
label: '问题描述',
|
|
@@ -298,10 +303,10 @@ export default {
|
298
|
303
|
label: '审核状态',
|
299
|
304
|
key: 'auditStatus'
|
300
|
305
|
},
|
301
|
|
- {
|
302
|
|
- label: '处理人',
|
303
|
|
- key: 'updateUser'
|
304
|
|
- },
|
|
306
|
+ // {
|
|
307
|
+ // label: '处理人',
|
|
308
|
+ // key: 'updateUser'
|
|
309
|
+ // },
|
305
|
310
|
],
|
306
|
311
|
tableData3: [],
|
307
|
312
|
total3: 0,
|
|
@@ -318,9 +323,15 @@ export default {
|
318
|
323
|
this.getTollmanList()
|
319
|
324
|
this.getTableData2()
|
320
|
325
|
this.getTableData3()
|
|
326
|
+ this.getEvidenceDic()
|
321
|
327
|
},
|
322
|
328
|
watch: {},
|
323
|
329
|
methods: {
|
|
330
|
+ getEvidenceDic() {
|
|
331
|
+ api_z.queryEvidenceType().then(res => {
|
|
332
|
+ this.evidenceOptions = res.data || []
|
|
333
|
+ })
|
|
334
|
+ },
|
324
|
335
|
handleAdd() {
|
325
|
336
|
this.title = '添加配置'
|
326
|
337
|
this.formLabelAlign = {}
|
|
@@ -349,6 +360,7 @@ export default {
|
349
|
360
|
type: 'success'
|
350
|
361
|
})
|
351
|
362
|
this.getTableData1()
|
|
363
|
+ this.getEvidenceDic()
|
352
|
364
|
}
|
353
|
365
|
})
|
354
|
366
|
} else {
|
|
@@ -360,6 +372,7 @@ export default {
|
360
|
372
|
type: 'success'
|
361
|
373
|
})
|
362
|
374
|
this.getTableData1()
|
|
375
|
+ this.getEvidenceDic()
|
363
|
376
|
}
|
364
|
377
|
})
|
365
|
378
|
}
|
|
@@ -401,9 +414,7 @@ export default {
|
401
|
414
|
},
|
402
|
415
|
|
403
|
416
|
handleConfirm2() {
|
404
|
|
- const {id} = this.formLabelAlign2.id
|
405
|
|
- console.log('radio', this.radio)
|
406
|
|
- api_z.applyResource({...this.formLabelAlign2}).then(res => {
|
|
417
|
+ api_z.auditInspectionManagement({...this.formLabelAlign2}).then(res => {
|
407
|
418
|
if (res.code === 200) {
|
408
|
419
|
this.dialogVisible2 = false
|
409
|
420
|
this.$message({
|
|
@@ -411,6 +422,7 @@ export default {
|
411
|
422
|
type: 'success'
|
412
|
423
|
})
|
413
|
424
|
this.getTableData2()
|
|
425
|
+ this.getTableData3()
|
414
|
426
|
}
|
415
|
427
|
})
|
416
|
428
|
},
|
|
@@ -426,7 +438,6 @@ export default {
|
426
|
438
|
api_z.queryInspectionEvidenceByPage({current: pageNum1, size: pageSize1, ...this.formInline1}).then(res => {
|
427
|
439
|
this.tableData1 = res.data.records || []
|
428
|
440
|
this.total1 = res.data.total
|
429
|
|
- this.evidenceOptions=res.data.records || []
|
430
|
441
|
})
|
431
|
442
|
},
|
432
|
443
|
handlePageChange2() {
|
|
@@ -444,7 +455,7 @@ export default {
|
444
|
455
|
},
|
445
|
456
|
getTableData3() {
|
446
|
457
|
const {pageNum3, pageSize3} = this
|
447
|
|
- api_z.queryInspectionManagementByPage({current: pageNum3, size: pageSize3, ...this.formInline3}).then(res => {
|
|
458
|
+ api_z.queryInspectionManagementByPage1({current: pageNum3, size: pageSize3, ...this.formInline3}).then(res => {
|
448
|
459
|
this.tableData3 = res.data.records || []
|
449
|
460
|
this.total3 = res.data.total
|
450
|
461
|
})
|