From 589c55566759b4906ec76d5e98cc37eac05eb459 Mon Sep 17 00:00:00 2001 From: xzt <1113240624@qq.com> Date: Mon, 22 Jan 2024 17:06:38 +0800 Subject: [PATCH] =?UTF-8?q?=E7=A1=AE=E6=9D=83=E5=88=92=E7=95=8C=E5=AE=8C?= =?UTF-8?q?=E6=88=90=EF=BC=8C=E5=AE=89=E5=85=A8=E9=89=B4=E5=AE=9A=E5=92=8C?= =?UTF-8?q?=E9=98=B2=E6=B1=9B=E7=AE=A1=E7=90=86=E6=90=AD=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/yg/aqrw.js | 6 +- .../confirmDelimitationManage/dyke/index.vue | 3 + .../confirmDelimitationManage/index.vue | 45 + .../reservoir/index.vue | 3 + .../sluice/index.vue | 833 ++++++++++++++++++ .../examine/components/listPage/transform.vue | 65 +- .../floodControlManagement/dyke/index.vue | 3 + .../floodControlPower.vue | 45 + .../floodControlPreplan.vue | 45 + .../floodControlSupplies.vue | 45 + .../floodControlTissue.vue | 45 + .../floodControlManagement/index.vue | 3 + .../reservoir/index.vue | 3 + .../floodControlManagement/sluice/power.vue | 3 + .../floodControlManagement/sluice/preplan.vue | 3 + .../sluice/supplies.vue | 3 + .../floodControlManagement/sluice/tissue.vue | 3 + .../responsiblePersonManage/index.vue | 21 + .../responsiblePersonManage/sluice/index.vue | 422 ++++----- 19 files changed, 1292 insertions(+), 307 deletions(-) create mode 100644 src/views/safetyManage/confirmDelimitationManage/dyke/index.vue create mode 100644 src/views/safetyManage/confirmDelimitationManage/index.vue create mode 100644 src/views/safetyManage/confirmDelimitationManage/reservoir/index.vue create mode 100644 src/views/safetyManage/confirmDelimitationManage/sluice/index.vue create mode 100644 src/views/safetyManage/floodControlManagement/dyke/index.vue create mode 100644 src/views/safetyManage/floodControlManagement/floodControlPower.vue create mode 100644 src/views/safetyManage/floodControlManagement/floodControlPreplan.vue create mode 100644 src/views/safetyManage/floodControlManagement/floodControlSupplies.vue create mode 100644 src/views/safetyManage/floodControlManagement/floodControlTissue.vue create mode 100644 src/views/safetyManage/floodControlManagement/index.vue create mode 100644 src/views/safetyManage/floodControlManagement/reservoir/index.vue create mode 100644 src/views/safetyManage/floodControlManagement/sluice/power.vue create mode 100644 src/views/safetyManage/floodControlManagement/sluice/preplan.vue create mode 100644 src/views/safetyManage/floodControlManagement/sluice/supplies.vue create mode 100644 src/views/safetyManage/floodControlManagement/sluice/tissue.vue diff --git a/src/api/yg/aqrw.js b/src/api/yg/aqrw.js index bbd5b05..2551b1d 100644 --- a/src/api/yg/aqrw.js +++ b/src/api/yg/aqrw.js @@ -3,7 +3,7 @@ import request from '@/utils/request' // 查询水闸安全鉴定任务信息列表 export function listAqrw(query) { return request({ - url: '/aqrw/aqrw/list', + url: '/aqrw/list', method: 'post', data: query }) @@ -12,7 +12,7 @@ export function listAqrw(query) { // 查询水闸安全鉴定任务信息详细 export function getAqrw(id) { return request({ - url: '/aqrw/aqrw/' + id, + url: '/aqrw/' + id, method: 'get' }) } @@ -20,7 +20,7 @@ export function getAqrw(id) { // 新增水闸安全鉴定任务信息 export function addAqrw(data) { return request({ - url: '/aqrw/aqrw', + url: '/aqrw', method: 'post', data: data }) diff --git a/src/views/safetyManage/confirmDelimitationManage/dyke/index.vue b/src/views/safetyManage/confirmDelimitationManage/dyke/index.vue new file mode 100644 index 0000000..8b02d59 --- /dev/null +++ b/src/views/safetyManage/confirmDelimitationManage/dyke/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/confirmDelimitationManage/index.vue b/src/views/safetyManage/confirmDelimitationManage/index.vue new file mode 100644 index 0000000..3956aa5 --- /dev/null +++ b/src/views/safetyManage/confirmDelimitationManage/index.vue @@ -0,0 +1,45 @@ + + diff --git a/src/views/safetyManage/confirmDelimitationManage/reservoir/index.vue b/src/views/safetyManage/confirmDelimitationManage/reservoir/index.vue new file mode 100644 index 0000000..b917325 --- /dev/null +++ b/src/views/safetyManage/confirmDelimitationManage/reservoir/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/confirmDelimitationManage/sluice/index.vue b/src/views/safetyManage/confirmDelimitationManage/sluice/index.vue new file mode 100644 index 0000000..af25d54 --- /dev/null +++ b/src/views/safetyManage/confirmDelimitationManage/sluice/index.vue @@ -0,0 +1,833 @@ + + + + diff --git a/src/views/safetyManage/declarationManage/sluice/examine/components/listPage/transform.vue b/src/views/safetyManage/declarationManage/sluice/examine/components/listPage/transform.vue index c80e48f..dbcd5b2 100644 --- a/src/views/safetyManage/declarationManage/sluice/examine/components/listPage/transform.vue +++ b/src/views/safetyManage/declarationManage/sluice/examine/components/listPage/transform.vue @@ -144,6 +144,7 @@ @@ -333,11 +334,7 @@ export default { row.securityIsPass ); }, - // 取消按钮 - cancel() { - this.reset(); - this.open = false; - }, + // 表单重置 reset() { this.form = { @@ -440,31 +437,41 @@ export default { }, /** 提交按钮 */ submitForm() { - this.$refs["form"].validate((valid) => { - if (valid) { - this.form.securityAppraisalSituation = JSON.stringify(this.fileList1); - this.form.securityCategoryAttachment = JSON.stringify(this.fileList2); + console.log("审核通过"); + // this.$refs["form"].validate((valid) => { + // if (valid) { + // this.form.securityAppraisalSituation = JSON.stringify(this.fileList1); + // this.form.securityCategoryAttachment = JSON.stringify(this.fileList2); - if (this.form.id != null) { - updateHzxx(this.form).then((response) => { - if (response.code === 200) { - this.msgSuccess("修改成功"); - this.open = false; - this.getList(); - } - }); - } else { - this.form.wageId = this.inFo.id; - addHzxx(this.form).then((response) => { - if (response.code === 200) { - this.msgSuccess("新增成功"); - this.open = false; - this.getList(); - } - }); - } - } - }); + // if (this.form.id != null) { + // updateHzxx(this.form).then((response) => { + // if (response.code === 200) { + // this.msgSuccess("修改成功"); + // this.open = false; + // this.getList(); + // } + // }); + // } else { + // this.form.wageId = this.inFo.id; + // addHzxx(this.form).then((response) => { + // if (response.code === 200) { + // this.msgSuccess("新增成功"); + // this.open = false; + // this.getList(); + // } + // }); + // } + // } + // }); + }, + // 审核不通过 + notPass() { + console.log("审核不通过"); + }, + // 取消按钮 + cancel() { + this.reset(); + this.open = false; }, /** 删除按钮操作 */ handleDelete(row) { diff --git a/src/views/safetyManage/floodControlManagement/dyke/index.vue b/src/views/safetyManage/floodControlManagement/dyke/index.vue new file mode 100644 index 0000000..923b439 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/dyke/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/floodControlManagement/floodControlPower.vue b/src/views/safetyManage/floodControlManagement/floodControlPower.vue new file mode 100644 index 0000000..c5a65e8 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/floodControlPower.vue @@ -0,0 +1,45 @@ + + diff --git a/src/views/safetyManage/floodControlManagement/floodControlPreplan.vue b/src/views/safetyManage/floodControlManagement/floodControlPreplan.vue new file mode 100644 index 0000000..93cc145 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/floodControlPreplan.vue @@ -0,0 +1,45 @@ + + diff --git a/src/views/safetyManage/floodControlManagement/floodControlSupplies.vue b/src/views/safetyManage/floodControlManagement/floodControlSupplies.vue new file mode 100644 index 0000000..e9b8413 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/floodControlSupplies.vue @@ -0,0 +1,45 @@ + + diff --git a/src/views/safetyManage/floodControlManagement/floodControlTissue.vue b/src/views/safetyManage/floodControlManagement/floodControlTissue.vue new file mode 100644 index 0000000..7858b73 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/floodControlTissue.vue @@ -0,0 +1,45 @@ + + diff --git a/src/views/safetyManage/floodControlManagement/index.vue b/src/views/safetyManage/floodControlManagement/index.vue new file mode 100644 index 0000000..98240ae --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/floodControlManagement/reservoir/index.vue b/src/views/safetyManage/floodControlManagement/reservoir/index.vue new file mode 100644 index 0000000..b917325 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/reservoir/index.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/floodControlManagement/sluice/power.vue b/src/views/safetyManage/floodControlManagement/sluice/power.vue new file mode 100644 index 0000000..bab0d04 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/sluice/power.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/floodControlManagement/sluice/preplan.vue b/src/views/safetyManage/floodControlManagement/sluice/preplan.vue new file mode 100644 index 0000000..c421691 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/sluice/preplan.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/floodControlManagement/sluice/supplies.vue b/src/views/safetyManage/floodControlManagement/sluice/supplies.vue new file mode 100644 index 0000000..bf43431 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/sluice/supplies.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/floodControlManagement/sluice/tissue.vue b/src/views/safetyManage/floodControlManagement/sluice/tissue.vue new file mode 100644 index 0000000..c95baf7 --- /dev/null +++ b/src/views/safetyManage/floodControlManagement/sluice/tissue.vue @@ -0,0 +1,3 @@ + diff --git a/src/views/safetyManage/responsiblePersonManage/index.vue b/src/views/safetyManage/responsiblePersonManage/index.vue index d7b2366..220068b 100644 --- a/src/views/safetyManage/responsiblePersonManage/index.vue +++ b/src/views/safetyManage/responsiblePersonManage/index.vue @@ -1,5 +1,15 @@ - - - - - - - - + - - - + + + + + + + + + + + + + - - + + - + - + - + - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - +