失败不关闭

This commit is contained in:
luyuan 2020-11-20 11:18:34 +08:00
parent 8ae53fc45b
commit 627704bc4b
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
2 changed files with 7 additions and 5 deletions

View File

@ -450,11 +450,13 @@ export async function editpassword(data?: any): Promise<any> {
const res = await put<Liveaddrule>('/member/' + data.memberid,newdata)
if(res.code==0){
message.success("修改成功")
return false
}else{
message.error(res.msg)
return true
}
return res
}
/**

View File

@ -807,7 +807,7 @@ export default defineComponent({
* 修改密码
* @return { void }
*/
function updateUserPassword(): void {
async function updateUserPassword(): Promise<void> {
passwordForm.memberid = userinfo.value.memberid
console.log(toRaw(passwordForm));
if (
@ -815,8 +815,8 @@ export default defineComponent({
) {
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'));
}