feat(credit): 添加历史数据导入功能和操作人字段

- 在多个信用模块API中新增历史数据导入功能,包括行政许可、破产重整、失信被执行人、开庭公告、终本案件等
- 为信用相关页面表格增加操作人(realName)字段显示
- 新增历史数据导入弹窗组件,支持Excel文件上传和模板下载
- 实现导入历史数据的API接口函数,支持文件和公司ID参数
- 优化信用模块页面UI布局,添加历史导入按钮和相关组件引用
This commit is contained in:
2026-01-20 02:17:36 +08:00
parent 7890ec07d8
commit 183967ea4a
47 changed files with 1372 additions and 21 deletions

View File

@@ -58,6 +58,8 @@
<CreditXgxfEdit v-model:visible="showEdit" :data="current" @done="reload" />
<!-- 导入弹窗 -->
<CreditXgxfImport v-model:visible="showImport" @done="reload" />
<!-- 历史导入弹窗 -->
<CreditXgxfHistoryImport v-model:visible="showImport2" @done="reload" />
</a-page-header>
</template>
@@ -76,6 +78,7 @@
import { getPageTitle } from '@/utils/common';
import CreditXgxfEdit from './components/creditXgxfEdit.vue';
import CreditXgxfImport from './components/credit-xgxf-import.vue';
import CreditXgxfHistoryImport from './components/credit-xgxf-history-import.vue';
import {
pageCreditXgxf,
listCreditXgxf,
@@ -181,6 +184,13 @@
key: 'releaseDate',
width: 120
},
{
title: '操作人',
dataIndex: 'realName',
key: 'realName',
width: 90,
align: 'center'
},
{
title: '创建时间',
dataIndex: 'createTime',