hotfix/2.9.42311.02

This commit is contained in:
黎永顺 2023-11-13 14:15:49 +08:00
parent 9f114e9867
commit 0798d2bf96
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ class InputPaymentAmount extends Component {
render: (text, record) => {
return (
<WeaInputNumber
value={record[`${record.insuranceId}_per`]} min={0}
value={record[`${record.insuranceId}_per`]}
precision={2} onChange={(val) => this.handleChangeBaseItem(record, val, type, "per")}
/>
);
@ -30,7 +30,7 @@ class InputPaymentAmount extends Component {
render: (text, record) => {
return (
<WeaInputNumber
value={record[`${record.insuranceId}_com`]} min={0}
value={record[`${record.insuranceId}_com`]}
precision={2} onChange={(val) => this.handleChangeBaseItem(record, val, type, "com")}
/>
);