|
@@ -65,6 +65,9 @@ import {
|
|
|
import {
|
|
|
getUserInfo
|
|
|
} from '@/api/user.js';
|
|
|
+import {
|
|
|
+ bindParentId
|
|
|
+} from '@/api/groupon.js';
|
|
|
import {
|
|
|
postLoginAuth
|
|
|
} from '@/api/home.js';
|
|
@@ -75,6 +78,7 @@ export default {
|
|
|
mixins: [colors],
|
|
|
data () {
|
|
|
return {
|
|
|
+ inviteUserId:'',
|
|
|
isUp: false,
|
|
|
phone: '',
|
|
|
statusBarHeight: statusBarHeight,
|
|
@@ -94,6 +98,8 @@ export default {
|
|
|
routinePhone
|
|
|
},
|
|
|
onLoad (options) {
|
|
|
+ this.inviteUserId=this.$Cache.get("INVITE_USER_ID")
|
|
|
+ console.log("+++++++++INVITE_USER_ID+++++++++++++",this.inviteUserId)
|
|
|
if (uni.getUserProfile) {
|
|
|
this.canUseGetUserProfile = true
|
|
|
}
|
|
@@ -227,6 +233,17 @@ export default {
|
|
|
icon: 'none',
|
|
|
duration: 2000
|
|
|
});
|
|
|
+ console.log("+++++++++INVITE_USER_ID+++++++++111111111111++++",_this.inviteUserId)
|
|
|
+
|
|
|
+ if (_this.inviteUserId){
|
|
|
+ console.log("+++++++++INVITE_USER_ID++++++22222222222+++++++",_this.inviteUserId)
|
|
|
+
|
|
|
+ bindParentId(_this.inviteUserId).then(res =>{
|
|
|
+ _this.$Cache.set("INVITE_USER_ID", res.data)
|
|
|
+ })
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
setTimeout(() => {
|
|
|
// 自动登录失败时,跳转用户注册
|
|
|
uni.switchTab({
|