84 lines
1.6 KiB
TypeScript
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
|
|
};
|