From e2447bc7aab691c1e186adde4a4703c6c873b4e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=98=AF=E5=B0=8F=E7=8E=8B=E5=91=80=5C24601?= <819653817@qq.com> Date: Thu, 13 Feb 2025 09:30:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=B2=E8=81=94=E7=B3=BB=E5=BD=93=E4=BA=8B?= =?UTF-8?q?=E4=BA=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../shequzhili/event/cpts/process-form.vue | 19 +++++++++++++++++-- .../shequzhili/eventHandling/index.vue | 2 +- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/src/views/modules/shequzhili/event/cpts/process-form.vue b/src/views/modules/shequzhili/event/cpts/process-form.vue index ab2ff576e..c28503633 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form.vue @@ -5,8 +5,8 @@ - - + + @@ -48,6 +48,7 @@ let loading; // 加载动画 export default { data() { return { + eventState:"", casOptions: [], iscascaderShow: 0, selCategoryArray: [], @@ -131,8 +132,22 @@ export default { } }) this.getOrgTreeList() + this.sysAdvancedPage() }, methods: { + async sysAdvancedPage(row) { + const url = '/governance/icEventConfig/getStreetConfigDetail'; + const param = { + orgId: this.agencyId, + }; + const { data, code, msg } = await requestGet(url, param); + if (code === 0) { + this.eventState=data.eventState + + } else { + this.$message.error(msg); + } + }, async getOrgTreeList() { const url = "/gov/org/customeragency/agencyGridDepttree" let params = { diff --git a/src/views/modules/shequzhili/eventHandling/index.vue b/src/views/modules/shequzhili/eventHandling/index.vue index 35963b162..7029e40f5 100644 --- a/src/views/modules/shequzhili/eventHandling/index.vue +++ b/src/views/modules/shequzhili/eventHandling/index.vue @@ -532,7 +532,7 @@ export default { this.$message.error('上传文件只能是xls/xlsx格式!'); } - if (!isLt1M) { + if (!isLt1M) { this.$message.error('上传文件大小不能超过 10MB!'); } return fileType && isLt1M;