feat:项目管理-审计内容10-优化表格生成功能
This commit is contained in:
@@ -5,7 +5,7 @@ export const partyConductColumns = [
|
||||
dataIndex: 'category',
|
||||
key: 'category',
|
||||
align: 'center',
|
||||
width: 150,
|
||||
width: 120,
|
||||
customCell: (_, index) => {
|
||||
if (index === 0) return { rowSpan: 37 };
|
||||
else if (index === 37) return { rowSpan: 3 };
|
||||
@@ -18,7 +18,7 @@ export const partyConductColumns = [
|
||||
dataIndex: 'subCategory',
|
||||
key: 'subCategory',
|
||||
align: 'center',
|
||||
width: 180,
|
||||
width: 120,
|
||||
customCell: (_, index) => {
|
||||
if (index === 0) return { rowSpan: 17 };
|
||||
else if (index === 17) return { rowSpan: 8 };
|
||||
@@ -34,7 +34,7 @@ export const partyConductColumns = [
|
||||
dataIndex: 'detailCategory',
|
||||
key: 'detailCategory',
|
||||
align: 'center',
|
||||
width: 150,
|
||||
width: 120,
|
||||
customCell: (_, index) => {
|
||||
if ([4, 17, 22, 25, 26, 27, 28, 29, 32, 33, 34, 37, 38, 39, 42].includes(index))
|
||||
return { rowSpan: 1 };
|
||||
@@ -50,23 +50,23 @@ export const partyConductColumns = [
|
||||
title: '内容',
|
||||
dataIndex: 'content',
|
||||
key: 'content',
|
||||
align: 'left',
|
||||
width: 300
|
||||
align: 'center',
|
||||
width: 200
|
||||
},
|
||||
{
|
||||
title: '执行情况',
|
||||
dataIndex: 'executionStatus',
|
||||
key: 'executionStatus',
|
||||
align: 'center',
|
||||
width: 120
|
||||
width: 300
|
||||
},
|
||||
{
|
||||
title: '工作底稿索引',
|
||||
dataIndex: 'workPaperIndex',
|
||||
key: 'workPaperIndex',
|
||||
align: 'center',
|
||||
width: 140,
|
||||
ellipsis: true
|
||||
width: 180,
|
||||
// ellipsis: true
|
||||
},
|
||||
{
|
||||
title: '操作',
|
||||
|
||||
Reference in New Issue
Block a user