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() {