integral-order.js
6.0 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
// pages/affirm-order/affirm-order.js
let method = require("../../utils/reuqest.js");
const util = require("../../utils/util.js");
Page({
data: {
userData: {
address: '请选择收货地址'
},
data: '', //配送时间
startTime: '',
// endTime: '',
cartList: [{
url: '/images/1.jpg',
name: '鲜切泰国桃子',
detail: '果肉饱满,香甜可口',
price: '25'
}],
goodsData: '',
show: false,
currentDate: '12:00',
currentDateTwo: '13:00',
minHour: 1,
maxHour: 23,
length: 0,
maxlength:50,
leavaWord: '',
discountText: '满3减1满3减1',
allMoney: '4.00',
giveFee: '8.00',
totalMoney: '80.00',
id: '',
skuId: '',
orderId: '',
count: 1,
stockNum: ''
},
//选择时间
showPopupTwo() {
this.setData({
show: true
});
},
showPopup() {
this.setData({
show: true
});
},
onClose() {
this.setData({
show: false
});
},
onInput(e) {
this.setData({
currentDate: e.detail,
});
},
onInputTwo(e) {
this.setData({
currentDateTwo: e.detail,
});
},
cancel() {
this.setData({
show: false
});
},
confirm() {
this.setData({
show: false
});
},
cancelTwo() {
this.setData({
show: false
});
},
confirmTwo() {
this.setData({
show: false
});
},
//获取当天时间
getDayTime() {
var myDate = new Date();
var year = myDate.getFullYear();
var month = myDate.getMonth();
var day = myDate.getDate();
var dayNow = year + '-' + (month + 1) + "-" + day;
console.log(dayNow, 'daynow')
this.setData({
startTime: dayNow
})
},
//地址信息
getAddress() {
let index = wx.getStorageSync('addIndex')
method.getRequest("/address", data => {
if (data.statusCode == 0) {
this.setData({
userData: data.data[index],
})
}
})
},
//地址页面跳转
emit() {
wx.navigateTo({
url: '/pages/select-address/select-address',
})
},
//选择时间
//配送时间
bindDateChange: function (e) {
this.setData({
date: e.detail.value
})
},
selectTime() {
this.bindStartTimeChange()
},
bindStartTimeChange: function (e) {
this.setData({
startTime: e.detail.value
})
},
bindEndTimeChange: function (e) {
this.setData({
endTime: e.detail.value
})
},
//商品信息
getList(defaultSku) {
let postData = {
skuId: defaultSku,
num: this.data.count
}
method.postRequest("/order/goodsBuyNow", postData, data => {
if (data.statusCode == 0) {
this.setData({
goodsData: data.data
})
}
})
},
//点击减少
dec() {
let that = this
let count = that.data.count
if (that.data.count > 1) {
count--
} else {
wx.showToast({
title: '已经是最少了哦~',
icon: 'none'
})
}
that.setData({
count
})
},
//点击增加
add() {
let that = this
let count = that.data.count
let stock = that.data.stockNum
if (count < stock) {
count++
this.setData({
})
} else {
wx.showToast({
title: '不能超过库存哦~',
icon: 'none'
})
}
that.setData({
count
})
},
//留言
userInput(e) {
let value = e.detail.value
let len = parseInt(value.length);
if (value.length <= this.data.maxlength) {
this.setData({
content: value,
length: len
})
} else {
this.setData({
content: value,
length: this.data.maxlength
})
}
},
//商品-生成订单
creatOrder() {
let postData = {
addressId: this.data.userData.id,
couponId: "",
deliveryTime: this.data.date,
note: this.data.leavaWord,
num: 1,
skuId: this.data.skuId
}
method.postRequest("/order/generateOrder", postData, data => {
if (data.statusCode == 0) {
this.setData({
orderId: data.data.id
})
this.exchange()
} else {
wx.showToast({
title: data.msg,
icon: 'none'
})
return false
}
})
},
//立即兑换
exchange() {
let postData = {
num: 1,
skuId: this.data.skuId
}
method.postRequest("/order/goodsBuyNow", postData, data => {
if (data.statusCode == 0) {
wx.showToast({
title: '兑换成功',
duration: 3000
})
wx.redirectTo({
url: '/pages/order-detail/order-detail?orderId=' + this.data.orderId,
})
} else {
wx.showToast({
title: data.msg,
icon: 'none'
})
}
})
},
//兑换优惠券
discount() {
wx.redirectTo({
url: '/pages/discount-card/discount-card'
})
},
onLoad: function (options) {
let carts = wx.getStorageSync('carts')
let defaultSku = wx.getStorageSync('defaultSku')
if (defaultSku) {
this.getList(defaultSku)
}
this.setData({
carts: carts
})
this.setData({
id: options.id,
count: options.count,
stockNum: options.stockNum,
skuId: defaultSku
})
this.getAddress()
},
/**
* 生命周期函数--监听页面初次渲染完成
*/
onReady: function () {
},
/**
* 生命周期函数--监听页面显示
*/
onShow: function () {
this.getList();
this.getAddress();
this.getDayTime(); //配送时间 获取当天时间
},
/**
* 生命周期函数--监听页面隐藏
*/
onHide: function () {
},
/**
* 生命周期函数--监听页面卸载
*/
onUnload: function () {
},
/**
* 页面相关事件处理函数--监听用户下拉动作
*/
onPullDownRefresh: function () {
},
/**
* 页面上拉触底事件的处理函数
*/
onReachBottom: function () {
},
/**
* 用户点击右上角分享
*/
onShareAppMessage: function () {
}
})