From 607b9d4be0b23701a936a5153a35a54fb8e3e46c Mon Sep 17 00:00:00 2001 From: wws <18630710203@163.com> Date: Wed, 15 Nov 2023 17:49:46 +0800 Subject: [PATCH] =?UTF-8?q?=E7=82=B9=E6=A3=80=E5=B7=A1=E6=A3=80=E4=BF=9D?= =?UTF-8?q?=E5=85=BB=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/device/deviceOrder/index.vue | 4 +- src/views/device/inspectionPlan/index.vue | 2 +- src/views/device/spotCheckPlan/index.vue | 59 ++++++++++++------- .../device/spotInspectionOrder/index.vue | 19 ++++++ src/views/device/upkeepOrder/index.vue | 6 +- 5 files changed, 63 insertions(+), 27 deletions(-) diff --git a/src/views/device/deviceOrder/index.vue b/src/views/device/deviceOrder/index.vue index 432d910..3c024a3 100644 --- a/src/views/device/deviceOrder/index.vue +++ b/src/views/device/deviceOrder/index.vue @@ -386,8 +386,8 @@ - 达标 - 未达标 + 未达标 + 达标 diff --git a/src/views/device/inspectionPlan/index.vue b/src/views/device/inspectionPlan/index.vue index 7a72553..59e44e4 100644 --- a/src/views/device/inspectionPlan/index.vue +++ b/src/views/device/inspectionPlan/index.vue @@ -374,7 +374,7 @@ - + - - - - - + + + - + - + - + + + + + - + - + - + @@ -423,9 +430,15 @@ - + + + 达标 + + +
@@ -477,6 +480,11 @@ export default { dicts: ['device_order_status', 'device_loop_type'], data() { return { + dialogImageUrl: '', + dialogVisible: false, + disabled: false, + // 上传图片弹出层 + imgDialog: false, // 工作中心 workCenterList:[], // 遮罩层 @@ -544,6 +552,17 @@ export default { this.setWorkCenter(); }, methods: { + // test + handleRemove(file) { + console.log(file); + }, + handlePictureCardPreview(file) { + this.dialogImageUrl = file.url; + this.dialogVisible = true; + }, + handleDownload(file) { + console.log(file); + }, // 获取工作中心 setWorkCenter() { getWorkCenter().then(response => { diff --git a/src/views/device/upkeepOrder/index.vue b/src/views/device/upkeepOrder/index.vue index aa1427f..f31a06d 100644 --- a/src/views/device/upkeepOrder/index.vue +++ b/src/views/device/upkeepOrder/index.vue @@ -772,8 +772,8 @@ - 达标 - 未达标 + 未达标 + 达标 @@ -1088,7 +1088,7 @@ export default { this.form.personList = this.selectPersonList; addUpkeepOrder(this.form).then(response => { this.$modal.msgSuccess("新增成功"); - this.open = false; + this.orderDialog = false; this.getList(); }); },