From 8f4c2a21b930ed9ccc6817b68a12e84d9fc40f90 Mon Sep 17 00:00:00 2001 From: shijingjing <1789544664@qq.com> Date: Thu, 31 Mar 2022 15:32:22 +0800 Subject: [PATCH] =?UTF-8?q?=E8=82=A1=E6=9D=83=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xiushan/apps/AppPortalUser/pumDetail.vue | 44 ++++++++++++++++++- 1 file changed, 42 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/AppPortalUser/pumDetail.vue b/project/xiushan/apps/AppPortalUser/pumDetail.vue index 532c5327..9acb3113 100644 --- a/project/xiushan/apps/AppPortalUser/pumDetail.vue +++ b/project/xiushan/apps/AppPortalUser/pumDetail.vue @@ -3,7 +3,9 @@ @@ -56,11 +68,25 @@ export default { computed: { isAuthing() { return this.detail.status == "0" + }, + colConfigs() { + return [ + {prop: "", label: "股东名称", width: 150}, + {prop: "", label: "股东类型", width: 150}, + {prop: "", label: "身份证/信用代码", width: 240}, + {prop: "", label: "持股数量", width: 150}, + {prop: "", label: "持股占比", width: 150}, + {prop: "", label: "股权证", width: 200}, + ] } }, data() { return { detail: {}, + menuList: ['基本信息','股权结构'], + index: 0, + tableData: [], + page: {current: 1, size: 10, total: 0}, } }, methods: { @@ -74,6 +100,20 @@ export default { } }) }, + change(index) { + this.currentMenu = index + this.getDetail() + }, + getTableData() { + // this.instance.post("/app/appdvcpconfig/list", null, { + // params: {...this.page, ...this.search} + // }).then(res => { + // if (res?.data) { + // this.tableData = res.data?.records + // this.page.total = res.data.total + // } + // }) + }, }, created() { this.getDetail()