修复bug

This commit is contained in:
X1627315083
2024-12-20 16:28:18 +08:00
parent d4f29fe956
commit 3d3055a0cb
11 changed files with 117 additions and 26 deletions

View File

@@ -349,7 +349,11 @@ export default defineComponent({
'userDetail.email':{
handler(newVal, oldVal){
nextTick(()=>{
if(newVal == '-------------')this.setBindEmail()//如果没有绑定邮箱就弹窗
if(newVal == '-------------'){
setTimeout(()=>{
this.setBindEmail()//如果没有绑定邮箱就弹窗
},1000)
}
})
},
immediate: true