coop.js
4.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
import {
getBindtapData,
getObjByListKeyValue
} from '../../utils/util';
import {
productMap
} from '../../const/custom-data';
let app = getApp();
Page({
data: {
groupMemberCoopVisible: false,
tipsCommonVisible: false,
authorizeVisible: false,
tipsInnerText: "",
options: null,
wishInfo: {},
wishList: [],
coopInfo: {},
userInfo: {},
canShake: true,
status: 0,
},
onShareAppMessage() {},
showAuth() {
this.setData({
authorizeVisible: true
})
},
onLoad(options) {
this.setData({
options
})
},
onShow() {
this.initData();
},
initData() {
app.queryIndex().then((result) => {
this.setData({
userInfo: app.globalData.userInfo
})
// 判断是否需要授权
if (result.isNeedAuth == 1) {
app.router.push({
path: "authorize",
query: {
redirect: "coop"
}
})
} else {
// this.queryWishbillDetail();
// this.initShake();
}
this.queryWishbillDetail();
this.initShake();
})
},
// 添加摇一摇
initShake() {
let _this = this;
wx.onAccelerometerChange(function (res) {
if (!_this.data.canShake) {
return
}
if (res.x > 1) { //偏移量为2时触发,有的使用1
// 触发摇一摇
_this.queryWishbillAssist();
}
});
},
// 我也要玩
onPlayTooHandler() {
app.router.push({
openType: "reLaunch",
path: "index"
})
},
// 助力
queryWishbillAssist() {
app.post({
url: app.api.wishbillAssist,
data: {
billCode: this.data.options.code
}
}).then((result) => {
console.log("queryWishbillAssist result:", result);
let status = result.status;
if (status == 1) {
// 助力成功
// 合并数据
let wishList = result.elasticValueList;
wishList.forEach(element => {
let product = productMap[element.prizeDefineCode + ""];
element = Object.assign(element, product);
let progress = element.elasticValue / element.conditionElasticValue * 100;
if (progress > 100) progress = 100;
// 直接计算坐标
let progressLeft = progress * 3.22 - 51;
element.progress = progress;
element.progressLeft = progressLeft;
});
this.setData({
coopInfo: result,
wishList: wishList
})
} else if (status == 2) {
// 助力失败
this.setData({
tipsCommonVisible: true,
tipsInnerText: "已经为好友助力过啦~"
})
} else if (status == 3) {
this.setData({
tipsCommonVisible: true,
tipsInnerText: "不能为自己助力哦~"
})
} else {
// 助力失败
this.setData({
groupMemberCoopVisible: true
})
}
})
},
// 获取心愿单详情
queryWishbillDetail() {
return new Promise((resolve, reject) => {
app.post({
url: app.api.wishbillDetail,
data: {
billCode: this.data.options.code
}
}).then((result) => {
let status = result.isAssist;
this.setData({
status
})
let wishList = result.wishGifts;
wishList.forEach(element => {
let product = productMap[element.prizeDefineCode + ""];
element = Object.assign(element, product);
let progress = element.elasticValue / element.conditionElasticValue * 100;
if (progress > 100) progress = 100;
// 直接计算坐标
let progressLeft = progress * 3.22 - 51;
element.progress = progress;
element.progressLeft = progressLeft;
});
this.setData({
wishInfo: result,
wishList: wishList
})
console.log("wishInfo:", this.data.wishInfo);
console.log("wishList:", this.data.wishList);
})
});
},
hideMask() {
this.setData({
groupMemberCoopVisible: false,
tipsCommonVisible: false,
authorizeVisible: false,
})
},
// 子组件事件
evtcomp(evt) {
let {
name,
data
} = evt.detail;
switch (name) {
case "_evt_hide_mask":
this.hideMask();
break;
default:
break;
}
},
})