Files
template-10561/src/views/pwl/pwlProject/components/data/table8Columns.ts
b2894lxlx d8b4cba12d 1、审计内容里的操作功能优化
2、审计内容9增加一个表的内容生成
3、添加取证单弹窗
2026-01-13 12:23:55 +08:00

84 lines
1.6 KiB
TypeScript

import { createTestResultRender } from './table2Columns';
// 内部控制测试表格列
export const internalControlTestColumns = [
{
title: '序号',
dataIndex: 'index',
key: 'index',
width: 80,
align: 'center'
},
{
title: '控制环节',
dataIndex: 'controlLink',
key: 'controlLink',
align: 'center',
width: 150
},
{
title: '控制要求',
dataIndex: 'controlRequirement',
key: 'controlRequirement',
align: 'center',
width: 200
},
{
title: '控制活动描述',
dataIndex: 'controlActivity',
key: 'controlActivity',
align: 'center',
width: 300,
// ellipsis: true
},
{
title: '控制职责岗位',
dataIndex: 'controlPosition',
key: 'controlPosition',
align: 'center',
width: 150
},
{
title: '测试步骤',
dataIndex: 'testSteps',
key: 'testSteps',
align: 'center',
width: 250,
// ellipsis: true
},
{
title: '测试结果',
dataIndex: 'testResult',
key: 'testResult',
align: 'center',
width: 100,
customRender: createTestResultRender()
},
{
title: '检查证据',
dataIndex: 'checkEvidence',
key: 'checkEvidence',
align: 'center',
width: 250,
// ellipsis: true
},
{
title: '工作底稿索引',
dataIndex: 'workPaperIndex',
key: 'workPaperIndex',
align: 'center',
width: 200,
// ellipsis: true
},
// {
// title: '操作',
// key: 'action',
// align: 'center',
// width: 100
// }
];
export default {
internalControlTestColumns
};