From 89b2620d47674aa843a5066cef5d0e1da57360ec Mon Sep 17 00:00:00 2001 From: rose <1942951600@qq.com> Date: Sat, 17 Apr 2021 11:39:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../EntityApply/EntityApplyDate.vue | 8 +- .../EntityApply/EntityApplyEdit.vue | 179 +++++++++++++++--- src/config/api.js | 3 + 3 files changed, 166 insertions(+), 24 deletions(-) diff --git a/src/components/EntityApply/EntityApplyDate.vue b/src/components/EntityApply/EntityApplyDate.vue index 6d44ce3..216be8f 100644 --- a/src/components/EntityApply/EntityApplyDate.vue +++ b/src/components/EntityApply/EntityApplyDate.vue @@ -67,6 +67,7 @@ :editData="editData" :editVisible="editVisible" @closeModal="closeModal" + @getData="getData" /> @@ -143,7 +144,7 @@ export default { loading: false, height: '', editable: false, - editData: '', + editData: {}, editVisible: false, }; }, @@ -162,6 +163,11 @@ export default { methods: { + + getData() { + this.$emit('entityApplicationSearch'); + }, + // 删除 async deleteEditModal(id) { diff --git a/src/components/EntityApply/EntityApplyEdit.vue b/src/components/EntityApply/EntityApplyEdit.vue index ffca9d6..5a1ae82 100644 --- a/src/components/EntityApply/EntityApplyEdit.vue +++ b/src/components/EntityApply/EntityApplyEdit.vue @@ -2,16 +2,13 @@