hotfix/2.9.42311.02

This commit is contained in:
黎永顺 2023-11-15 13:53:56 +08:00
parent f0b657f26e
commit f4574570d9
3 changed files with 7 additions and 3 deletions

View File

@ -84,7 +84,7 @@ class SalaryCalcOcList extends Component {
render: (__, record) => {
const formulaDesc = record["customParameters"][`${o["dataIndex"]}`];
const showDifference = record[`${o["dataIndex"]}_type`] === "number";
const { acctResultValue, excelResultValue } = record[o["dataIndex"]];
const { acctResultValue, excelResultValue } = record[o["dataIndex"]] || {};
return <div className="comparison-column-item-container"
onClick={() => this.setState({ formulaDesc })}>
<div className="comparison-single-row">

View File

@ -40,10 +40,10 @@ class EditSalaryBaseInfo extends Component {
"esf-form-last-item": (index === baseInfo.length - 1 && (index + 1) % 2 === 1)
})}>
<Col span={(index === baseInfo.length - 1 && (index + 1) % 2 === 1) ? 3 : 6}>
<span className="label">{fieldName}</span>
<span className="label" title={fieldName}>{fieldName}</span>
</Col>
<Col span={(index === baseInfo.length - 1 && (index + 1) % 2 === 1) ? 21 : 18}>
<span className="value">{fieldValue}</span>
<span className="value" title={fieldValue}>{fieldValue}</span>
</Col>
</Row>
</Col>

View File

@ -168,6 +168,10 @@
display: inline-block;
line-height: 24px;
padding: 8px 16px;
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
}