修改文字
This commit is contained in:
@ -693,6 +693,7 @@ const EvaluateTemplateTable: React.FC<EvaluateTemplateTableProps> = ({
|
||||
dataIndex: 'index',
|
||||
align: 'center',
|
||||
key: 'index',
|
||||
width: 50,
|
||||
render: (_: any, record: TableRowItem, index: number) => {
|
||||
return <>{index + 1}</>;
|
||||
},
|
||||
@ -702,6 +703,7 @@ const EvaluateTemplateTable: React.FC<EvaluateTemplateTableProps> = ({
|
||||
dataIndex: 'indicatorType',
|
||||
align: 'center',
|
||||
key: 'indicatorType',
|
||||
width: 120,
|
||||
ellipsis: true, // 自动加省略号
|
||||
render: (text: string, record: TableRowItem) => {
|
||||
return renderWithRowSpan(text, record, (cellContent) => {
|
||||
@ -789,7 +791,7 @@ const EvaluateTemplateTable: React.FC<EvaluateTemplateTableProps> = ({
|
||||
align: 'center',
|
||||
dataIndex: 'descIndicator',
|
||||
key: 'descIndicator',
|
||||
width: 100,
|
||||
width: 150,
|
||||
render: (text: string, record: TableRowItem) => {
|
||||
return renderWithRowSpan(text, record, (cellContent) => {
|
||||
if (isDetail) {
|
||||
|
Reference in New Issue
Block a user