|
@@ -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;
|