auction-detail.js
8.76 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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
import {
getBindtapData,
} from '../../utils/util';
let Date = require('../../utils/date.js');
var timer = require('../../utils/wxTimer.js');
var wxTimer;
let app = getApp();
Page({
data: {
authorizeVisible: false,
auctionBidVisible: false,
auctionBidSuccessVisible: false,
auctionBidFailVisible: false,
userInfo: {},
productInfo: {},
priceInfo: [],
priceTotal: 0,
maxPrice: 0,
navBackTimeout: 0,
socketStatus: 'closed',
hasLogin: false,
waitingResponse: false,
loading: false,
options: {},
wxTimerList: {},
lastTime: "",
bidPrice: 0, // 我的出价 单位元
},
onShareAppMessage() {},
showAuth() {
this.setData({
authorizeVisible: true
})
},
onShow() {
if (wxTimer) {
wxTimer.calibration()
}
},
onLoad(options) {
this.setData({
options
})
this.queryAuctionDetail().then((result) => {
this.refreshTime();
})
this.queryAuctionRecordLast();
this.initData();
},
onUnload() {
if (wxTimer) {
wxTimer.stop()
}
clearInterval(this.data.stiIndex);
this.closeSocket()
},
initData() {
this.queryMember().then((result) => {
// this.openSocket();
});
},
// 开始倒计时
refreshTime() {
let _this = this;
if (wxTimer) {
wxTimer.stop();
}
let beginTime = _this.getTimeStr();
console.log("beginTime:", beginTime);
if (!beginTime) return;
wxTimer = new timer({
beginTime: beginTime,
complete() {
// console.log("完成了")
},
interval: 1,
intervalFn() {
// console.log("过去了1秒");
let lastTime = _this.getTimeStr({
day: true
});
_this.setData({
lastTime
})
// console.log("lastTime:", lastTime);
}
})
wxTimer.start(_this);
},
getTimeStr(initObj) {
initObj = initObj || {};
let productInfo = this.data.productInfo;
if (!productInfo || !productInfo.endTime) return;
let t = productInfo.endTime - new Date().getTime();
if (t <= 0) return;
let d = Math.floor(t / 1000 / 60 / 60 / 24);
let h = Math.floor(t / 1000 / 60 / 60 % 24) + (initObj.day ? 0 : 24 * d); // 含日的话,就不用24*d了
let m = Math.floor(t / 1000 / 60 % 60);
let s = Math.floor(t / 1000 % 60);
if (h < 10) h = "0" + h;
if (m < 10) m = "0" + m;
if (s < 10) s = "0" + s;
let lastTime = h + ":" + m + ":" + s;
// 包含日
if (initObj.day) {
lastTime = d + "天 " + h + ":" + m + ":" + s;
}
return lastTime;
},
/**
* 点击显示详情
*/
onShowAuctionBidDetailHandler(evt) {
app.router.push({
path: "auctionBidDetail",
query: {
code: this.data.options.code
}
})
},
/**
* 我要出价
*/
onSubmitHandler() {
let productInfo = this.data.productInfo;
if (productInfo && productInfo.status == 1) {
this.setData({
auctionBidVisible: true
})
let maxPrice = this.data.maxPrice;
let minBidPrice = maxPrice + productInfo.minScope;
this.auctionBidComp = this.selectComponent("#auctionBidComp");
if (this.auctionBidComp) {
this.auctionBidComp.setBidPrice(minBidPrice);
}
}
},
/**
* 秒杀详情
*/
queryAuctionDetail() {
let code = this.data.options.code;
// 45ebd46114904467824644b55654c27a
// cf8bc80aef3446b58d17abc6167ad536
let _this = this;
return new Promise((resolve, reject) => {
app.post({
url: app.api.auctionDetail,
data: {
auctionCode: code
}
}).then((result) => {
this.setData({
productInfo: result
})
// wx.setNavigationBarTitle({
// title: result.auctionName || "拍卖活动"
// })
resolve();
}).catch((err) => {
clearTimeout(_this.data.navBackTimeout);
_this.data.navBackTimeout = setTimeout(() => {
wx.navigateBack({
delta: 1
});
}, 1000);
});
})
},
/**
* 获得最高价 和列表
*/
queryAuctionRecordLast() {
return new Promise((resolve, reject) => {
let code = this.data.options.code;
if (code) {
app.post({
url: app.api.auctionRecordLast,
data: {
auctionCode: code
}
}).then((result) => {
let priceInfo = result.list || [];
priceInfo.forEach(element => {
element.recordTime = new Date(element.recordTime).toString("yyyy.MM.dd hh:mm:ss");
element.memberPhone = element.memberPhone.substr(0, 3) + '****' + element.memberPhone.substr(7);
});
this.setData({
priceInfo: priceInfo,
maxPrice: result.maxPrice || 0,
priceTotal: result.total || 0
})
resolve();
});
} else {
resolve();
}
})
},
/**
* 拍卖出价提交
* @param {*} price
*/
queryAuctionSubmit(price) {
let code = this.data.options.code;
this.setData({
bidPrice: price
})
app.post({
toast: false,
url: app.api.auctionSubmit,
data: {
auctionCode: code,
price: price * 100 //转成分
}
}).then((result) => {
console.log("result:", result);
this.queryAuctionRecordLast().then((res2) => {
this.setData({
auctionBidSuccessVisible: true
})
})
}).catch((err) => {
console.log("queryAuctionSubmit err:", err);
this.queryAuctionRecordLast().then((res2) => {
switch (err.code) {
// 来晚一步,该价格已经被其他用户提交 显示组件
case 1010:
this.setData({
auctionBidFailVisible: true
})
break;
default:
wx.showToast({
title: err.errMsg || "系统开小差"
})
break;
}
})
});
},
/**
* 获取会员信息
*/
queryMember() {
return new Promise((resolve, reject) => {
app.post({
url: app.api.member,
data: {}
}).then((result) => {
this.setData({
userInfo: result
})
resolve(result);
})
});
},
/**
* 打开websocket
*/
openSocket() {
let memberCode = this.data.userInfo.memberCode;
let auctionCode = this.data.options.code;
let wsUrl = 'wss://ow.go.qudone.com/zlzm/websocket/' + memberCode + auctionCode;
// console.log("wsUrl:", wsUrl);
if (!memberCode || !auctionCode) {
wx.showModal({
content: "信息丢失,无法同步实时数据",
showCancel: false,
success(res) {}
})
return;
}
wx.onSocketOpen(() => {
console.log('WebSocket 已连接');
this.setData({
socketStatus: 'connected',
waitingResponse: false
})
})
wx.onSocketClose(() => {
console.log('WebSocket 已断开')
this.setData({
socketStatus: 'closed'
})
this.openSocket();
})
wx.onSocketError(error => {
console.error('socket error:', error)
this.setData({
loading: false
})
})
// 监听服务器推送消息
wx.onSocketMessage(message => {
console.log('socket message:', message)
this.setData({
loading: false
})
})
// 打开信道
wx.connectSocket({
// url: 'wss://echo.websocket.org',
url: wsUrl
})
},
/**
* 关闭websocket
*/
closeSocket() {
if (this.data.socketStatus === 'connected') {
wx.closeSocket({
success: () => {
console.log("Socket已断开");
this.setData({
socketStatus: 'closed'
})
}
})
}
},
sendMessage(msg) {
if (this.data.socketStatus === 'connected') {
wx.sendSocketMessage({
data: msg
})
}
},
// 隐藏蒙层
hideMask() {
this.setData({
authorizeVisible: false,
auctionBidVisible: false,
auctionBidSuccessVisible: false,
auctionBidFailVisible: false,
})
},
// 子组件事件
evtcomp(evt) {
let {
name,
data
} = evt.detail;
console.log("@auction-detail || evt:", name)
switch (name) {
// 隐藏弹窗
case "_evt_hide_mask":
this.hideMask();
break;
// 拍卖出价
case "_evt_bid_submit":
let {
bidPrice
} = data;
console.log("bidPrice:", bidPrice);
this.hideMask();
this.queryAuctionSubmit(bidPrice);
break;
// 返回活动
case "_evt_continue_auction":
this.hideMask();
break;
// 重新报价
case "_evt_re_bid":
this.hideMask();
this.onSubmitHandler();
break;
default:
break;
}
},
})