|
@@ -336,23 +336,34 @@
|
|
|
onShow() {
|
|
|
const wxOpenData = this.$store.state.wxOpenData;
|
|
|
this.wxOpenData = wxOpenData
|
|
|
- //console.log()
|
|
|
- if (wxOpenData) {
|
|
|
-
|
|
|
- this.uid = wxOpenData.loginInfo.uid;
|
|
|
- }
|
|
|
+ console.log("onshowuser")
|
|
|
this.userInfo = this.$store.state.userInfo;
|
|
|
+ console.log(this.userInfo)
|
|
|
if (this.userInfo) {
|
|
|
this.queryMyDetail();
|
|
|
} else {
|
|
|
+ console.log("授权")
|
|
|
this.authorizShow = true;
|
|
|
}
|
|
|
+ if (wxOpenData) {
|
|
|
+
|
|
|
+ this.uid = wxOpenData.loginInfo.uid;
|
|
|
+ }
|
|
|
+
|
|
|
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
seeQr(){
|
|
|
-
|
|
|
+ // this.authorizShow = true;
|
|
|
+ // return false;
|
|
|
+ if (this.userInfo) {
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ this.authorizShow = true;
|
|
|
+ return false;
|
|
|
+ }
|
|
|
uni.showLoading({
|
|
|
title: '加载中'
|
|
|
})
|
|
@@ -429,10 +440,19 @@
|
|
|
if (data.loginInfo) {
|
|
|
this.userInfo = data.loginInfo.openUser;
|
|
|
this.wxOpenData = data.loginInfo;
|
|
|
- this.$store.commit('mutationswxOpenData', data.loginInfo)
|
|
|
+ this.numList=data.loginInfo
|
|
|
+ this.headImg = data.loginInfo.openUser.headImg;
|
|
|
+ this.nickName = data.loginInfo.openUser.nickName;
|
|
|
+ this.phone = data.loginInfo.openUser.mobilePhone;
|
|
|
+ this.$store.commit('mutationswxOpenData', data)
|
|
|
this.$store.commit('mutationsuserInfo', this.userInfo)
|
|
|
-
|
|
|
- this.queryMyDetail()
|
|
|
+
|
|
|
+ /*setTimeout(() => {
|
|
|
+
|
|
|
+ that.queryMyDetail()
|
|
|
+ }, 1000); */
|
|
|
+ that.queryMyDetail()
|
|
|
+
|
|
|
}
|
|
|
})
|
|
|
},
|
|
@@ -474,6 +494,8 @@
|
|
|
},
|
|
|
|
|
|
queryMyDetail() {
|
|
|
+ console.log("getinfo")
|
|
|
+ console.log(this.$store.state.wxOpenData)
|
|
|
uni.showLoading({
|
|
|
title: '加载中'
|
|
|
})
|