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