From 30580fb034d9339eb531d8e906a6d1260f1380ec Mon Sep 17 00:00:00 2001 From: ltlzx <942659938@qq.com> Date: Wed, 29 Sep 2021 11:57:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=AC=AC=E4=B8=89=E6=96=B9?= =?UTF-8?q?=E5=AE=A1=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../page/AccountManagement/thirdAudit.vue | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/src/components/page/AccountManagement/thirdAudit.vue b/src/components/page/AccountManagement/thirdAudit.vue index 4374f46..af05433 100644 --- a/src/components/page/AccountManagement/thirdAudit.vue +++ b/src/components/page/AccountManagement/thirdAudit.vue @@ -90,7 +90,9 @@ > - + + @@ -100,6 +102,8 @@ import moment from 'moment' export default { data() { return { + dialogType:1, + dialogID:'', query: { firm_name: '', phone: '', @@ -110,7 +114,8 @@ export default { audit_status: '', time: '', page: 1, - limit: 10 + limit: 10, + type:'third_party' }, tableData: [], multipleSelection: [], @@ -150,10 +155,16 @@ export default { }, }; }, + components:{ + whyDialog: () => import('../../common/dialog/insex.vue') + }, created() { this.getData(); }, methods: { + MisShow(){ + this.editVisible=false + }, // 重置方法 reset(){ Object.keys(this.query).forEach(key => { @@ -184,9 +195,9 @@ export default { }, // 编辑操作 handleEdit(index, row) { - this.idx = index; - this.form = row; this.editVisible = true; + this.dialogID=row.id; + this.dialogType=1 }, // 保存编辑 saveEdit() {