From 749675ae6e1a22d9ab2f3614ad2421d86658fef9 Mon Sep 17 00:00:00 2001 From: jscyl13849007907 <13849007907@163.com> Date: Wed, 22 Jan 2025 15:47:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Login/updatepsw.vue | 13 ++-- .../accountsetting/components/loginpsw.vue | 86 ++++++++++++++++++++-- 2 files changed, 85 insertions(+), 14 deletions(-) diff --git a/src/components/Login/updatepsw.vue b/src/components/Login/updatepsw.vue index a487240..6f8f704 100644 --- a/src/components/Login/updatepsw.vue +++ b/src/components/Login/updatepsw.vue @@ -81,7 +81,7 @@ - +
diff --git a/src/components/userinfo/accountsetting/components/loginpsw.vue b/src/components/userinfo/accountsetting/components/loginpsw.vue index b544948..c5e6058 100644 --- a/src/components/userinfo/accountsetting/components/loginpsw.vue +++ b/src/components/userinfo/accountsetting/components/loginpsw.vue @@ -1,5 +1,5 @@ @@ -111,6 +152,10 @@ export default { form: this.$form.createForm(this), loginShow: false, btnLoading: false, + + pwdModal:{ + isShow:false + } } }, // 计算属性 @@ -237,11 +282,36 @@ export default { // console.log(callback); }, + + openModalPwd(){ + let that = this; + that.pwdModal = { + isShow:true + } + console.log(that.pwdModal); + }, + pwdHandleOk(){ + + }, + pwdHandleCancel(){ + + } }, }