修改文字

This commit is contained in:
linxd
2025-07-16 15:58:52 +08:00
parent a4dbc378f3
commit 612082dedb
11 changed files with 80 additions and 67 deletions

View File

@ -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) {