feat:项目管理-审计内容-优化工作底稿索引

This commit is contained in:
2026-01-09 14:50:56 +08:00
parent f751d5eda4
commit d574975c97
12 changed files with 20 additions and 27 deletions

View File

@@ -65,7 +65,7 @@ export const partyConductColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 180,
width: 200,
// ellipsis: true
},
{

View File

@@ -78,7 +78,7 @@ export const auditHistoryColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
// ellipsis: true
},
{

View File

@@ -225,7 +225,7 @@ export const default1Columns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
ellipsis: true
},
{
@@ -305,7 +305,7 @@ export const leaderListColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 180,
width: 200,
ellipsis: true
},
{
@@ -426,7 +426,7 @@ export const eightRegColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
ellipsis: true
},
{

View File

@@ -44,7 +44,7 @@ export const strategyAuditColumns = [
title: '工作底稿索引',
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
width: 120,
width: 200,
align: 'center',
// ellipsis: true
},

View File

@@ -38,6 +38,7 @@ export const tripleOneColumns = [
dataIndex: 'testResult',
key: 'testResult',
align: 'center',
width: 80,
customRender: createTestResultRender()
},
{
@@ -45,7 +46,7 @@ export const tripleOneColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
ellipsis: true
},
{

View File

@@ -79,7 +79,7 @@ export const columns0 = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 180,
width: 200,
ellipsis: true
}
];

View File

@@ -94,7 +94,7 @@ export const budgetManageColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
ellipsis: true
},
{
@@ -161,7 +161,7 @@ export const budgetExecutionColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
ellipsis: true
},
{

View File

@@ -102,7 +102,7 @@ export const stateAssetsManageColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
ellipsis: true
},
{

View File

@@ -8,15 +8,6 @@ export const investmentSituationColumns = [
key: 'category',
width: 150,
align: 'center',
// filters: [
// { text: '重大对外投资审计', value: '重大对外投资审计' },
// { text: '重大工程建设审计', value: '重大工程建设审计' },
// { text: '重大资本运作审计', value: '重大资本运作审计' },
// { text: '重大资产处置审计', value: '重大资产处置审计' },
// { text: '重大物资(服务)采购审计', value: '重大物资(服务)采购审计' },
// { text: '重大担保借款审计', value: '重大担保借款审计' },
// ],
// onFilter: (value, record) => record.category === value,
},
{
title: '审计内容',
@@ -47,7 +38,7 @@ export const investmentSituationColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
// ellipsis: true
},
{

View File

@@ -67,7 +67,7 @@ export const internalControlTestColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
// ellipsis: true
},
{

View File

@@ -40,7 +40,7 @@ export const personnelEstablishmentColumns = [
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 140,
width: 200,
},
{
title: '操作',

View File

@@ -265,26 +265,27 @@
<div
v-for="(fileItem, fileIndex) in record.workPaperIndex"
:key="fileIndex"
class="file-item"
>
<img
src="@/assets/word.png"
style="width: 20px; height: 20px; vertical-align: middle; margin-right: 4px;"
alt=""
/>
<!-- 新格式支持 -->
<a
v-if="fileItem.fileUrl"
:href="fileItem.fileUrl"
target="_blank"
@click.stop="handleFileDownload(fileItem, $event)"
class="file-link"
style="color: #1890ff; text-decoration: none; cursor: pointer;"
class="file-link cursor-pointer text-wrap"
style="color: #1890ff; text-decoration: none;"
>
{{ fileItem.fileName || '未命名文件' }}
</a>
<!-- 旧格式兼容 -->
<span v-else class="file-name">
<span v-else class="cursor-pointer text-wrap">
{{ fileItem.fileName || fileItem || '未命名文件' }}
</span>
</div>