Browse Source

分销推广码调整

gcz 11 months ago
parent
commit
cd96c5ddc8
2 changed files with 19 additions and 2 deletions
  1. 5 0
      common/apiurl.js
  2. 14 2
      pages/login/login.vue

+ 5 - 0
common/apiurl.js

@@ -22,6 +22,11 @@ const apiurl = {
 		url: '/system/common/uncompress',
 		type: 'get'
 	},
+	// 用户绑定分销码
+	bindRetail: {
+		url: '/member/memberInfo/bindRetail',
+		type: 'post'
+	},
 	// 重新登录
 	reLogin: {
 		url: '/auth/login',

+ 14 - 2
pages/login/login.vue

@@ -134,6 +134,7 @@
 				customStyleOk:{'margin-left': '30px',color:'#00A447'},
 				backUrl:null,
 				scene:'',
+				retailId:'',
 			};
 		},
 		onLoad(e) {
@@ -312,13 +313,14 @@
 						// data.performId = res.data.performId;
 						data.label = res.data.label;
 						data.retailId =  res.data.retailId;
+						this.retailId = res.data.retailId;
 						data.retailId&&uni.setStorage({
 							key:'retailId',
 							data:data.retailId
 						});
 						// console.log('uncompress',res.data);
 					}).catch(err=>{
-						console.log('uncompress',err);
+						console.log('uncompress err',err);
 					})
 				}
 				// #endif
@@ -350,9 +352,19 @@
 					this.showAuthorizePhone = false
 				})
 			},
-			getMemberInfo(userid){
+			handleBindRetail(retailId){
+				this.$u.api.bindRetail({retailId:retailId}).then(res=>{
+					console.log('bindRetail',res);					
+				}).catch(err=>{
+					console.log('bindRetail err',err);
+				})
+			},
+			async getMemberInfo(userid){
 				// console.log('userid',userid);
 				let _this = this;
+				if(this.retailId){
+					await this.handleBindRetail(this.retailId);
+				}
 				this.$u.api.memberInfo({id:userid}).then(res=> {
 					if(res.code ===200) {
 						_this.userInfo = res.data;