zhanghui 1 年間 前
コミット
d5383857ef
2 ファイル変更25 行追加0 行削除
  1. 8 0
      api/groupon.js
  2. 17 0
      pages/users/wechat_login/index.vue

+ 8 - 0
api/groupon.js

@@ -17,6 +17,14 @@ export function saveFilecontent(data) {
     return request.post("/v1/filecontent/saveFilecontent",data);
 }
 
+
+// 绑定上级
+export function bindParentId(parentId) {
+    return request.post("/v1/commission/bindParentId?parentId="+parentId,null);
+}
+
+
+
 // 查询分佣列表
 export function commissionList(data) {
     return request.post("/v1/commission/list",data);

+ 17 - 0
pages/users/wechat_login/index.vue

@@ -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({