You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
697 B

2 years ago
export default function () {
return {
title: "登录",
type: "object",
properties: {
currentPassword: {
title: "当前密码",
type: "string",
input: "password",
rules: [
{
required: true,
},
],
},
newPassword: {
title: "新密码",
type: "string",
input: "password",
rules: [
{
required: true,
},
],
},
newPassword2: {
title: "确认新密码",
type: "string",
input: "password",
rules: [
{
required: true,
},
],
},
},
};
}