|
@@ -35,53 +35,38 @@ export default {
|
35
|
35
|
console.log(user);
|
36
|
36
|
|
37
|
37
|
// 判断用户是否验证团长号
|
38
|
|
- // if (user.roleId && user.bundleId !== 0) {
|
39
|
|
- // } else {
|
40
|
|
- // this.api
|
41
|
|
- // .get(
|
42
|
|
- // "/Group/CheckCode",
|
43
|
|
- // {
|
44
|
|
- // platform: user.fromPlatform,
|
45
|
|
- // },
|
46
|
|
- // { pass: true }
|
47
|
|
- // )
|
48
|
|
- // .then((res) => {
|
49
|
|
- // if (res.success) {
|
50
|
|
- // if (res.data.verified) {
|
51
|
|
- // // if (!res.data.storeId) {
|
52
|
|
- // // this.router.push({
|
53
|
|
- // // isTabBar: true,
|
54
|
|
- // // path: "/pages/assistant/index",
|
55
|
|
- // // });
|
56
|
|
- // // this.fn.setTabBar([3]);
|
57
|
|
- // // } else {
|
58
|
|
- // // this.router.push({
|
59
|
|
- // // isTabBar: true,
|
60
|
|
- // // path: "/pages/index/index",
|
61
|
|
- // // });
|
62
|
|
- // // this.fn.setTabBar([1, 2]);
|
63
|
|
- // // }
|
64
|
|
- // } else {
|
65
|
|
- // this.router.push({
|
66
|
|
- // path: "/pages/index/register",
|
67
|
|
- // query: {
|
68
|
|
- // pidCode: res.data.code,
|
69
|
|
- // step: 3,
|
70
|
|
- // },
|
71
|
|
- // });
|
72
|
|
- // this.fn.setTabBar([3]);
|
73
|
|
- // }
|
74
|
|
- // } else {
|
75
|
|
- // this.router.push({
|
76
|
|
- // path: "/pages/index/register",
|
77
|
|
- // query: {
|
78
|
|
- // step: 2,
|
79
|
|
- // },
|
80
|
|
- // });
|
81
|
|
- // this.fn.setTabBar([3]);
|
82
|
|
- // }
|
83
|
|
- // });
|
84
|
|
- // }
|
|
38
|
+ if (user.roleId && user.bundleId !== 0) {
|
|
39
|
+ } else {
|
|
40
|
+ this.api
|
|
41
|
+ .get(
|
|
42
|
+ "/Group/CheckCode",
|
|
43
|
+ {
|
|
44
|
+ platform: user.fromPlatform,
|
|
45
|
+ },
|
|
46
|
+ { pass: true }
|
|
47
|
+ )
|
|
48
|
+ .then((res) => {
|
|
49
|
+ if (res.success) {
|
|
50
|
+ if (res.data.verified) {
|
|
51
|
+ } else {
|
|
52
|
+ this.router.push({
|
|
53
|
+ path: "/pages/index/register",
|
|
54
|
+ query: {
|
|
55
|
+ pidCode: res.data.code,
|
|
56
|
+ step: 3,
|
|
57
|
+ },
|
|
58
|
+ });
|
|
59
|
+ }
|
|
60
|
+ } else {
|
|
61
|
+ this.router.push({
|
|
62
|
+ path: "/pages/index/register",
|
|
63
|
+ query: {
|
|
64
|
+ step: 2,
|
|
65
|
+ },
|
|
66
|
+ });
|
|
67
|
+ }
|
|
68
|
+ });
|
|
69
|
+ }
|
85
|
70
|
},
|
86
|
71
|
|
87
|
72
|
onShow: async function (option) {
|