home.js
12.4 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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
// pages/home/home.js
let method = require("../../utils/reuqest.js")
const util = require("../../utils/util.js");
let discountCart = []; //弹窗优惠券id
let discountListId = []; //优惠券列表ID
Page({
data: {
show: false,
discountList: '', //优惠券列表
value: '',
swiperArray: [], //轮播图
classifyArray: [], //分类
limitCount: '限时优惠', //限时优惠
limitCountShow: true,
moreCount: '更多优惠',
time: '', //限时优惠倒计时
timeData: {},
hour: "",
minute: "",
second: "",
endTimess: '',
nowTimes: '', //获取当前时间戳
endTimes: "",
countDownShow: true,
discountArray: [], //每日特价
dayPrice: '每日特价',
dayPriceShow: true,
morePrice: '更多特价',
dayPicArray: [],
nameData: '', //九月主推
marilyArray: [{
url: '/images/2.jpg'
}],
pickArray: [], //每日精选
pickList: [],
picksList: [],
discountCartArray: [],
categoryId: '',
times: '', //每日特价倒计时
timeDatas: {},
bottomHint: false //上拉触底
},
// tabbar
toClassify(){
wx.reLaunch({
url: '/pages/classify/classify',
})
},
toShopCart(){
wx.reLaunch({
url: '/pages/shopping-cart/shopping-cart',
})
},
toUser(){
wx.reLaunch({
url: '/pages/user/user',
})
},
//搜索
goSearch() {
wx.navigateTo({
url: '/pages/search/search',
})
},
//轮播图
swiper() {
method.getRequest('/banner', data => {
if (data.statusCode == 0) {
this.setData({
swiperArray: data.data
})
}
})
},
// 点击进入轮播图详情
goBannnerDetail(e) {
let url = e.currentTarget.dataset.url;
wx.setStorageSync('url', url);
if (url !== '') {
wx.navigateTo({
url: '/pages/product-detail/product-detail',
})
}
},
//分类
classify() {
method.getRequest("/category/getCategoryList", data => {
if (data.statusCode == 0) {
this.setData({
classifyArray: data.data
})
}
})
},
classifyEvent(e) {
let categoryId = e.currentTarget.dataset.id;
let index = e.currentTarget.dataset.index
wx.setStorageSync('categoryId', categoryId)
wx.setStorageSync('classifyIndex', index)
wx.reLaunch({
url: '/pages/classify/classify',
})
},
//限时优惠
discount() {
let postData = {
currPage: 1,
pageSize: 10,
t: {}
}
method.postRequest('/goods/limitedTimeOffer', postData, data => {
if (data.statusCode == 0) {
this.setData({
discountArray: data.data
})
if (data.data.length <= 0) {
this.setData({
limitCountShow: false
})
}
}
})
},
onChange1(e) {
this.setData({
timeData: e.detail,
});
},
countDown() {
let startTime = null;
let endTime = null;
let date = null;
// let nowTimes = this.data.nowTimes
method.getRequest('/goods/getActivity', data => {
if (data.statusCode == 0) {
startTime = new Date().getTime();
// endTime = data.data.endDate;
endTime=this.initTime(data.data.endDate).replace(/-/g,'/') //标准时间转换为普通日期
endTime=Date.parse(endTime)
console.log(endTime,'end')
this.setData({
endTimess: endTime
})
date = (Number(endTime) - Number(startTime));
console.log(date,'666')
if (date<=0) {
this.setData({
countDownShow: false
})
} else {
this.setData({
time: date
})
}
}
})
},
//限时优惠倒计时
//标准时间转换为普通时间
initTime(t) {
let d = new Date(t).getTime(new Date(t));
let time = new Date(d + 8 * 3600 * 1000).toJSON().substr(0, 19).replace('T', ' ').replace(/\./g, '-');
return time;
},
demoDown() {
this.setData({
timer: setInterval(() => {
let that = this;
// that.countDown();
let startTime = new Date().getTime();
let date = (Number(this.data.endTimess) - Number(startTime));
this.setData({
time: date
})
let downTime = Number(that.data.time);
var hour = parseInt(downTime / 1000 / 60 / 60) < 10 ? "0" + parseInt(downTime / 1000 / 60 / 60) : parseInt(downTime / 1000 / 60 / 60);
var minute = parseInt(downTime / 1000 / 60 % 60) < 10 ? "0" + parseInt(downTime / 1000 / 60 % 60) : parseInt(downTime / 1000 / 60 % 60)
var second = parseInt(downTime / 1000 % 60) < 10 ? "0" + parseInt(downTime / 1000 % 60) : parseInt(downTime / 1000 % 60)
this.setData({
hour: hour,
minute: minute,
second: second
})
}, 1000)
})
},
//每日特价倒计时
// 获取当前时间
getCurrentDate(format) {
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth();
var date = now.getDate();
var day = now.getDay();
var hour = now.getHours();
var minu = now.getMinutes();
var sec = now.getSeconds();
month = month + 1;
if (month < 10) month = "0" + month;
if (date < 10) date = "0" + date;
if (hour < 10) hour = "0" + hour;
if (minu < 10) minu = "0" + minu;
if (sec < 10) sec = "0" + sec;
var time = "";
//精确到天
if (format == 1) {
time = year + "-" + month + "-" + date;
}
//精确到分
else if (format == 2) {
time = year + "/" + month + "/" + date + " " + hour + ":" + minu + ":" + sec;
}
return time;
},
dayCountDown() {
var nowTime = this.getCurrentDate(2)
var nowTimes = Date.parse(new Date(nowTime))
this.setData({
nowTimes: nowTimes
})
var endTimes = new Date(new Date().toLocaleDateString()).getTime() + 24 * 60 * 60 * 1000 - 1; //每天24:00时间戳
var jieguo = Number(endTimes) - Number(nowTimes)
this.setData({
times: jieguo
})
},
onChange2(e) {
this.setData({
timeDatas: e.detail,
});
},
//更多优惠
moreCount() {
wx.switchTab({
url: '/pages/classify/classify',
})
},
//加入购物车
addCart(e) {
let type = e.currentTarget.dataset.type;
let skuId = e.currentTarget.dataset.id;
// util.getUser();
if (type == 1) {
wx.showToast({
title: '该商品是积分商品,不能加入购物车',
icon: 'none'
})
} else {
let postData = {
goodsSkuId: skuId,
num: 1
}
method.postRequest("/cart", postData, data => {
if (data.statusCode == 0) {
wx.showToast({
title: "添加购物车成功",
icon: 'success',
duration: 1000
})
} else {
wx.showToast({
title: data.msg,
icon: 'none',
duration: 1000
})
setTimeout(() => {
util.getUser()
}, 1000)
}
})
}
},
//点击进入限时优惠详情
goGoodsDetail(e) {
let id = e.currentTarget.dataset.id;
wx.navigateTo({
url: '/pages/product-detail/product-detail?id=' + id,
})
},
//每日特价
daySpecial() {
let postData = {
currPage: 1,
pageSize: 10,
t: {}
}
method.postRequest('/goods/todaySpecial', postData, data => {
if (data.statusCode == 0) {
this.setData({
dayPicArray: data.data
})
if (data.data.length == 0) {
this.setData({
dayPriceShow: false
})
}
}
})
},
//更多特价
morePrice() {
wx.switchTab({
url: '/pages/classify/classify',
})
},
//九月主推
septemberMain() {
let postData = {
currPage: 1,
pageSize: 10,
t: {}
}
method.postRequest('/goods/septemberMainPush', postData, data => {
if (data.statusCode == 0) {
this.setData({
marilyArray: data.data
})
}
})
},
getName() {
method.getRequest("/goods/septemberMainPush", data => {
if (data.statusCode == 0) {
this.setData({
nameData: data.data
})
}
})
},
// 弹出优惠券领取
getCard() {
method.getRequest("/myUser/get", data => {
if (data.statusCode == 0) {
if (data.data) {
this.showPopup()
} else {}
}
})
},
showPopup() {
this.setData({
show: true
});
},
onClose() {
this.setData({
show: false
});
},
//优惠券弹窗
discountCart() {
let that = this;
method.getRequest('/goods/homeCouponList', data => {
if (data.statusCode == 0) {
that.setData({
discountCartArray: data.data
})
}
let list = that.data.discountCartArray;
list.forEach((item, index) => {
discountCart.push(item.id)
})
// that.downCart(list)
})
},
//领取优惠券
//优惠券列表
discountList() {
// util.getUser();
method.getRequest("/goods/homeCouponList", data => {
this.setData({
discountList: data.data
})
let list = this.data.discountList;
list.forEach((index, item) => {
discountListId.push(item.id)
})
})
},
getDiscountCart() {
for (var i = 0; i < discountCart.length; i++) {
method.getRequest("/myUser/getCoupon/" + discountCart[i], data => {
if (data.statusCode == 0) {
wx.showToast({
title: '领取成功',
})
this.setData({
show: false
})
} else {
wx.showToast({
title: data.msg,
})
}
})
}
// this.setData({
// show: false
// });
},
//每日精选导航
daySelect() {
method.getRequest('/category/getCategoryList', data => {
if (data.statusCode == 0) {
this.setData({
pickArray: data.data
})
}
})
},
//每日精选导航切换
onChange(e) {
let idx = e.detail.index;
let lists = this.data.pickArray;
lists.forEach((item, index) => {
if (idx == index) {
this.setData({
categoryId: item.categoryId
})
let id = this.data.categoryId;
this.dataRequest(id)
}
})
},
//每日精选切换导航请求数据
dataRequest: function (id) {
let postData = {
categoryId: id,
page: 1,
size: 10
}
method.postRequest('/goods/list', postData, data => {
if (data.statusCode == 0) {
this.setData({
pickList: data.data
})
}
})
},
//每日精选请求数据
oneDataRequest: function () {
method.getRequest('/category/getCategoryList', data => {
if (data.statusCode == 0) {
this.setData({
pickArray: data.data,
categoryId: this.data.pickArray[0].categoryId
})
let lists = this.data.pickArray;
let id = this.data.categoryId;
let postData = {
categoryId: id,
page: 1,
size: 10
}
method.postRequest('/goods/list', postData, data => {
if (data.statusCode == 0) {
this.setData({
pickList: data.data
})
}
})
}
})
},
/**
* 生命周期函数--监听页面加载
*/
onLoad: function (options) {
let that = this;
that.getCard();
that.swiper();
that.classify();
that.discount();
that.daySpecial();
that.septemberMain();
that.discountCart();
that.daySelect();
that.dataRequest();
that.countDown();
that.oneDataRequest();
that.discountList();
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.dayCountDown();
this.getName(); //九月主推
setTimeout(() => {
this.demoDown();
}, 200)
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
this.setData({
bottomHint: true
})
setTimeout(() => {
this.setData({
bottomHint: false
})
}, 2000)
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})