Merge branch 'hotfix/2.9.42311.02'

This commit is contained in:
黎永顺 2023-11-13 14:18:16 +08:00
commit 115a0ee64f
2 changed files with 15 additions and 8 deletions

View File

@ -13,10 +13,12 @@ export const loginCondition = [
fieldcol: 18,
label: getLabel(388431, "登录密码"),
labelcol: 6,
detailtype: 3,
detailtype: 1,
rules: "required|string",
type: "password",
viewAttr: 3
viewAttr: 3,
otherParams: {
type: "password"
}
}
],
title: "",
@ -35,10 +37,12 @@ export const condition = [
fieldcol: 18,
label: getLabel(409, "密码"),
labelcol: 6,
detailtype: 3,
detailtype: 1,
rules: "required|string",
viewAttr: 3,
type: "password"
otherParams: {
type: "password"
}
},
{
colSpan: 1,
@ -49,7 +53,10 @@ export const condition = [
labelcol: 6,
rules: "required|string",
viewAttr: 3,
type: "password"
detailtype: 1,
otherParams: {
type: "password"
}
},
{
colSpan: 1,

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")}
/>
);