This commit is contained in:
张良(004796)
2024-03-18 16:18:33 +08:00
parent 150f5414ae
commit 89844806f4

View File

@@ -204,7 +204,7 @@ export default {
inputPattern: /^.{5,20}$/, inputPattern: /^.{5,20}$/,
inputErrorMessage: "用户密码长度必须介于 5 和 20 之间", inputErrorMessage: "用户密码长度必须介于 5 和 20 之间",
}).then(({ value }) => { }).then(({ value }) => {
resetCustomerPwd(row.id, value).then(response => { resetCustomerPwd(row.id, value).then(() => {
this.msgSuccess("修改成功,新密码是:" + value); this.msgSuccess("修改成功,新密码是:" + value);
}); });
}).catch(() => {}); }).catch(() => {});