BUG 30518

This commit is contained in:
aixianling
2022-07-06 14:49:34 +08:00
parent 292b4720e3
commit 6e3f72092c

View File

@@ -25,6 +25,11 @@
</el-tab-pane>
<el-tab-pane v-for="(tab,i) in tabs" :label="tab.label" :key="i" lazy>
<ai-table :dict="dict" :tableData="info[tab.prop]" :col-configs="tab.colConfigs" :isShowPagination="false" border tableSize="small">
<el-table-column slot="detail" label="操作" align="center" width="100px">
<template slot-scope="{row}">
<el-button type="text" @click="$router.push({name:'973f0339e5904d99bc8afe86b8cf4e9c',query:{id:row.id}})">详情</el-button>
</template>
</el-table-column>
<div slot="empty">截止{{ $moment().format('YYYY-MM-DD') }},尚未公开信息</div>
</ai-table>
</el-tab-pane>
@@ -51,10 +56,9 @@ export default {
{
label: "企业信息", prop: "unitList", colConfigs: [
{prop: 'enterpriseName', label: '企业名称'},
{prop: 'idNumber', label: '统一社会信用代码', align: 'center'},
{prop: 'enterpriseType', label: '企业类型', dict: "enterpriseType", align: 'center'},
{prop: 'areaName', label: '所属区域', align: 'center'},
{prop: 'businessScope', label: '经营范围', align: 'center'},
{prop: 'operationPeriod', label: '营业期限', align: 'center'},
{slot: 'detail'}
]
},
{