失败不关闭

This commit is contained in:
2020-11-20 11:18:34 +08:00
parent 8ae53fc45b
commit 627704bc4b
2 changed files with 7 additions and 5 deletions

View File

@@ -807,16 +807,16 @@ export default defineComponent({
* 修改密码
* @return { void }
*/
function updateUserPassword(): void {
async function updateUserPassword(): Promise<void> {
passwordForm.memberid = userinfo.value.memberid
console.log(toRaw(passwordForm));
if (
toRaw(passwordForm).password === toRaw(passwordForm).topassword
toRaw(passwordForm).password === toRaw(passwordForm).topassword
) {
if (toRaw(passwordForm).original != "") {
// console.log(toRaw(passwordForm).password);
editpassword(toRaw(passwordForm));
togglePasswordModal(false);
const res = await editpassword(toRaw(passwordForm));
togglePasswordModal(res);
} else {
message.error(lan.$t('yuanmimaweikong'));
}