hotfix/2.9.42311.02
This commit is contained in:
parent
9f114e9867
commit
0798d2bf96
|
|
@ -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")}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue