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;