From 8f4981951ee0b5bcbeaa69d95a9eafc449039ce4 Mon Sep 17 00:00:00 2001 From: jiangyy Date: Fri, 28 Oct 2022 14:27:14 +0800 Subject: [PATCH] 111 --- .../base/epidemic/unitEpid/crowdEpidList.vue | 8 ++- .../epidemic/unitEpid/staffEpidDetail.vue | 63 ++++++++++++++++--- .../base/epidemic/unitEpid/staffEpidList.vue | 10 ++- 3 files changed, 67 insertions(+), 14 deletions(-) diff --git a/src/views/modules/base/epidemic/unitEpid/crowdEpidList.vue b/src/views/modules/base/epidemic/unitEpid/crowdEpidList.vue index de4914e82..1a7b72c00 100644 --- a/src/views/modules/base/epidemic/unitEpid/crowdEpidList.vue +++ b/src/views/modules/base/epidemic/unitEpid/crowdEpidList.vue @@ -102,6 +102,10 @@ class="div-table-button--delete " size="small" @click="handleDelete(scope.row)">删除 + 删除 @@ -255,7 +259,7 @@ export default { const url = "/gov/org/icGroupPeopleRegister/delete" // const url = "http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/del" - let params = [...row.id] + let params = [row.id] const { data, code, msg } = await requestPost(url, params) @@ -316,7 +320,7 @@ export default { computed: { tableHeight () { - return this.$store.state.inIframe ? this.clientHeight - 420 + this.iframeHeight : this.clientHeight - 420 + return this.$store.state.inIframe ? this.clientHeight - 320 + this.iframeHeight : this.clientHeight - 320 }, diff --git a/src/views/modules/base/epidemic/unitEpid/staffEpidDetail.vue b/src/views/modules/base/epidemic/unitEpid/staffEpidDetail.vue index 4281cf926..c2ee17cf9 100644 --- a/src/views/modules/base/epidemic/unitEpid/staffEpidDetail.vue +++ b/src/views/modules/base/epidemic/unitEpid/staffEpidDetail.vue @@ -1,8 +1,17 @@ @@ -199,7 +203,7 @@ :close-on-click-modal="false" :close-on-press-escape="false" :title="'详情'" - width="850px" + width="1350px" top="5vh" class="dialog-h" @closed="diaDetailClose"> @@ -386,7 +390,7 @@ export default { const url = "/gov/org/icEmployeeRegister/delete" // const url = "http://yapi.elinkservice.cn/mock/245/epmetuser/icNat/del" - let params = [...row.registerId] + let params = [row.registerId] const { data, code, msg } = await requestPost(url, params) @@ -450,7 +454,7 @@ export default { computed: { tableHeight () { - return this.$store.state.inIframe ? this.clientHeight - 420 + this.iframeHeight : this.clientHeight - 420 + return this.$store.state.inIframe ? this.clientHeight - 370 + this.iframeHeight : this.clientHeight - 370 },