股权结构
This commit is contained in:
@@ -3,6 +3,8 @@
|
|||||||
<ai-detail>
|
<ai-detail>
|
||||||
<ai-title slot="title" title="经营主体详情" isShowBottomBorder isShowBack @onBackClick="$router.push({query:{}})"/>
|
<ai-title slot="title" title="经营主体详情" isShowBottomBorder isShowBack @onBackClick="$router.push({query:{}})"/>
|
||||||
<template #content>
|
<template #content>
|
||||||
|
<ai-sidebar :tabTitle="menuList" v-model="index" @change="change"></ai-sidebar>
|
||||||
|
<template v-if="index==0">
|
||||||
<el-form size="small" label-width="160px">
|
<el-form size="small" label-width="160px">
|
||||||
<ai-card title="营业执照">
|
<ai-card title="营业执照">
|
||||||
<template #content>
|
<template #content>
|
||||||
@@ -39,6 +41,16 @@
|
|||||||
</template>
|
</template>
|
||||||
</ai-card>
|
</ai-card>
|
||||||
</el-form>
|
</el-form>
|
||||||
|
</template>
|
||||||
|
<template v-if="index==1">
|
||||||
|
<ai-card title="股权结构">
|
||||||
|
<!-- <el-button type="text">+添加股东</el-button> -->
|
||||||
|
<ai-table :tableData="tableData" :total="page.total" :current.sync="page.current" :size.sync="page.size"
|
||||||
|
@getList="getTableData" :col-configs="colConfigs">
|
||||||
|
|
||||||
|
</ai-table>
|
||||||
|
</ai-card>
|
||||||
|
</template>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
</ai-detail>
|
</ai-detail>
|
||||||
@@ -56,11 +68,25 @@ export default {
|
|||||||
computed: {
|
computed: {
|
||||||
isAuthing() {
|
isAuthing() {
|
||||||
return this.detail.status == "0"
|
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() {
|
data() {
|
||||||
return {
|
return {
|
||||||
detail: {},
|
detail: {},
|
||||||
|
menuList: ['基本信息','股权结构'],
|
||||||
|
index: 0,
|
||||||
|
tableData: [],
|
||||||
|
page: {current: 1, size: 10, total: 0},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
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() {
|
created() {
|
||||||
this.getDetail()
|
this.getDetail()
|
||||||
|
|||||||
Reference in New Issue
Block a user