This commit is contained in:
X1627315083
2024-12-19 13:47:55 +08:00
parent 4a65772ca9
commit 82836a7b27
9 changed files with 608 additions and 13 deletions

View File

@@ -50,6 +50,9 @@ export default defineComponent({
],
loadingShow:false,
activeKey: '',
userDetail:computed(()=>{
return store.state.UserHabit.userDetail
})
})
let domRefs:any = reactive({
myInformation:ref(null),
@@ -86,8 +89,13 @@ export default defineComponent({
Https.axiosGet(Https.httpUrls.bindWeChat, {params:data})
.then((rv) => {
accountfrontPage.loadingShow = false
console.log(rv);
let value = {
accountExtendList:{
WeChat:rv,
Google:accountfrontPage.userDetail.accountExtendList?.Google
}
}
store.commit("upUserDetail", value)
router.push({ query: {} });
})
.catch((res) => {accountfrontPage.loadingShow = false});