|
@@ -62,8 +62,11 @@
|
|
|
</el-form>
|
|
|
</div>
|
|
|
<el-dialog
|
|
|
+ v-if="showEdit"
|
|
|
v-model="showEdit"
|
|
|
title="修改密码"
|
|
|
+ :close-on-click-modal="false"
|
|
|
+ :close-on-press-escape="false"
|
|
|
width="30%"
|
|
|
@close="closeRepass"
|
|
|
>
|
|
@@ -264,7 +267,8 @@ function getCookie() {
|
|
|
};
|
|
|
}
|
|
|
const closeRepass = () => {
|
|
|
- userStore.logOut();
|
|
|
+ // userStore.logOut();
|
|
|
+ formData.value = { oldpss: "", newpass: "", rePass: "" };
|
|
|
showEdit.value = false;
|
|
|
};
|
|
|
|