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(){ + + } }, }