Browse Source

bug修改

twt 2 years ago
parent
commit
4571eacf6a
4 changed files with 40 additions and 17 deletions
  1. 1 1
      ext.json
  2. 31 9
      pages/user/user.vue
  3. 6 6
      utils/common.js
  4. 2 1
      utils/request.js

+ 1 - 1
ext.json

@@ -4,7 +4,7 @@
 	"directCommit": false,
 	"ext": {
 		"shopId": "E37BB296-5A08-4534-859D-B351BA611AF9",
-        "url":"http://api.dms.66km.com.cn",
+		"url":"http://api.dms.66km.com.cn",
 		"unionId":"EEADACCD-8A19-499D-8AD7-6975D2C93243",
 		"appId":"wx33053a645546ec31"
 	}

+ 31 - 9
pages/user/user.vue

@@ -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: '加载中'
 				})

+ 6 - 6
utils/common.js

@@ -73,12 +73,12 @@ function noMultipleClicks(methods, info) {
 function getExtStoreId(type){
 	try{
 		var extConfig = uni.getExtConfigSync ? uni.getExtConfigSync() : {shopId:'默认的门店id'};
-		// extConfig={
-		// 	"shopId": "E37BB296-5A08-4534-859D-B351BA611AF9",
-		// 	"url":"http://api.dms.66km.com.cn",
-		// 	"unionId":"EEADACCD-8A19-499D-8AD7-6975D2C93243",
-		// 	"appId":"wx33053a645546ec31"
-	 //    }
+		 // extConfig={
+		 // 	"shopId": "9D723F77-C1A9-4728-933B-5AF653772557",
+		 // 	"url":"https://apidms.66km.com",
+		 // 	"unionId":"66649854-64B9-4668-A59C-DFF1D33EEA50",
+		 // 	"appId":"wx699857c5dd55a509"
+	  //    }
 		console.log(extConfig,'extJson对象');
 		//return extConfig[type];
 		return extConfig

+ 2 - 1
utils/request.js

@@ -20,7 +20,7 @@ const http = (url = '', date = {}, type = 'POST', header = {
     return new Promise((resolve, reject) => {
 		header={};
 		//console.log(baseUrl)
-		console.log($store.state.wxOpenData)
+		console.log($store.state.wxOpenData.loginInfo)
 		//const wxOpenData = uni.getStorageSync("wxOpenData");
 		var wxOpenData=$store.state.wxOpenData
 		if(wxOpenData.loginInfo){
@@ -114,6 +114,7 @@ const httpBinary = (url = '', date = {}, type = 'POST', header = {
 			
             resolve(res.data);
         }).catch(error => {
+			uni.hideLoading();
             let [err, res] = error;
             reject(err)
         })