feat(credit): 添加历史数据导入功能和操作人字段
- 在多个信用模块API中新增历史数据导入功能,包括行政许可、破产重整、失信被执行人、开庭公告、终本案件等 - 为信用相关页面表格增加操作人(realName)字段显示 - 新增历史数据导入弹窗组件,支持Excel文件上传和模板下载 - 实现导入历史数据的API接口函数,支持文件和公司ID参数 - 优化信用模块页面UI布局,添加历史导入按钮和相关组件引用
This commit is contained in:
@@ -71,6 +71,8 @@
|
||||
/>
|
||||
<!-- 导入弹窗 -->
|
||||
<CreditBankruptcyImport v-model:visible="showImport" @done="reload" />
|
||||
<!-- 历史导入弹窗 -->
|
||||
<CreditBankruptcyHistoryImport v-model:visible="showImport2" @done="reload" />
|
||||
</a-page-header>
|
||||
</template>
|
||||
|
||||
@@ -89,6 +91,7 @@
|
||||
import { getPageTitle } from '@/utils/common';
|
||||
import CreditBankruptcyEdit from './components/creditBankruptcyEdit.vue';
|
||||
import CreditBankruptcyImport from './components/credit-bankruptcy-import.vue';
|
||||
import CreditBankruptcyHistoryImport from './components/credit-bankruptcy-history-import.vue';
|
||||
import {
|
||||
pageCreditBankruptcy,
|
||||
listCreditBankruptcy,
|
||||
@@ -176,6 +179,13 @@
|
||||
dataIndex: 'publicDate',
|
||||
key: 'publicDate'
|
||||
},
|
||||
{
|
||||
title: '操作人',
|
||||
dataIndex: 'realName',
|
||||
key: 'realName',
|
||||
width: 90,
|
||||
align: 'center'
|
||||
},
|
||||
{
|
||||
title: '创建时间',
|
||||
dataIndex: 'createTime',
|
||||
|
||||
Reference in New Issue
Block a user