2025-04-17 09:54:03 +08:00
|
|
|
export const secondaryVerifyConditions = [
|
|
|
|
|
{
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
conditionType: "INPUT",
|
|
|
|
|
domkey: ["authCode"],
|
|
|
|
|
fieldcol: 14,
|
|
|
|
|
label: "二次验证密码",
|
|
|
|
|
labelcol: 10,
|
|
|
|
|
value: "",
|
|
|
|
|
otherParams: {
|
|
|
|
|
type: "password"
|
|
|
|
|
},
|
|
|
|
|
rules: "required|string",
|
|
|
|
|
viewAttr: 3
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
title: "",
|
|
|
|
|
defaultshow: true
|
|
|
|
|
}
|
|
|
|
|
];
|
2025-04-17 14:23:31 +08:00
|
|
|
export const loginCondition = [
|
|
|
|
|
{
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
conditionType: "INPUT",
|
|
|
|
|
domkey: ["password"],
|
|
|
|
|
fieldcol: 14,
|
|
|
|
|
label: "登录密码",
|
|
|
|
|
labelcol: 10,
|
|
|
|
|
value: "",
|
|
|
|
|
otherParams: {
|
|
|
|
|
type: "password"
|
|
|
|
|
},
|
|
|
|
|
rules: "required|string",
|
|
|
|
|
viewAttr: 3
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
title: "",
|
|
|
|
|
defaultshow: true
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
export const secondarypwdCondition = [
|
|
|
|
|
{
|
|
|
|
|
items: [
|
|
|
|
|
{
|
|
|
|
|
conditionType: "INPUT",
|
|
|
|
|
domkey: ["secondaryPwd1"],
|
|
|
|
|
fieldcol: 14,
|
|
|
|
|
label: "密码",
|
|
|
|
|
labelcol: 10,
|
|
|
|
|
value: "",
|
|
|
|
|
otherParams: {
|
|
|
|
|
type: "password",
|
|
|
|
|
passwordStrength: true
|
|
|
|
|
},
|
|
|
|
|
rules: "required|string",
|
|
|
|
|
viewAttr: 3
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
conditionType: "INPUT",
|
|
|
|
|
domkey: ["secondaryPwd2"],
|
|
|
|
|
fieldcol: 14,
|
|
|
|
|
label: "确认密码",
|
|
|
|
|
labelcol: 10,
|
|
|
|
|
value: "",
|
|
|
|
|
otherParams: {
|
|
|
|
|
type: "password"
|
|
|
|
|
},
|
|
|
|
|
rules: "required|string",
|
|
|
|
|
viewAttr: 3
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
conditionType: "INPUT",
|
|
|
|
|
domkey: ["validatecode"],
|
|
|
|
|
fieldcol: 14,
|
|
|
|
|
label: "验证码",
|
|
|
|
|
labelcol: 10,
|
|
|
|
|
value: "",
|
|
|
|
|
rules: "required|string",
|
|
|
|
|
viewAttr: 3
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
title: "",
|
|
|
|
|
defaultshow: true
|
|
|
|
|
}
|
|
|
|
|
];
|