|
@@ -222,6 +222,7 @@ Page({ |
|
@@ -222,6 +222,7 @@ Page({ |
222
|
confirmText: '好的',
|
222
|
confirmText: '好的',
|
223
|
});
|
223
|
});
|
224
|
},
|
224
|
},
|
|
|
225
|
+
|
225
|
// 普通购买
|
226
|
// 普通购买
|
226
|
loadShoppingPayment(options) {
|
227
|
loadShoppingPayment(options) {
|
227
|
this.orderType = ORDER_TYPE.ORDINARY;
|
228
|
this.orderType = ORDER_TYPE.ORDINARY;
|
|
@@ -247,14 +248,14 @@ Page({ |
|
@@ -247,14 +248,14 @@ Page({ |
247
|
}
|
248
|
}
|
248
|
|
249
|
|
249
|
return ensureModel.shoppingCompute({
|
250
|
return ensureModel.shoppingCompute({
|
250
|
- cart_type: "ordinary",
|
251
|
+ cart_type: 'ordinary',
|
251
|
payment_type: 1, // 支付方式,1 在线支付 2 货到付款
|
252
|
payment_type: 1, // 支付方式,1 在线支付 2 货到付款
|
252
|
delivery_way: this.orderData.deliveryWayId, // 快递方式,1 普通 2 加急
|
253
|
delivery_way: this.orderData.deliveryWayId, // 快递方式,1 普通 2 加急
|
253
|
use_yoho_coin: 0, // 使用的yoho币金额,单位元1:00
|
254
|
use_yoho_coin: 0, // 使用的yoho币金额,单位元1:00
|
254
|
use_red_envelopes: 0, // 使用的红包,单位元
|
255
|
use_red_envelopes: 0, // 使用的红包,单位元
|
255
|
- coupon_code: "", // 优惠券code,多个用","分割
|
|
|
256
|
- promotion_code: "", // 优惠码code
|
|
|
257
|
- gift_card_code: "", // 礼品卡code
|
256
|
+ coupon_code: '', // 优惠券code,多个用","分割
|
|
|
257
|
+ promotion_code: '', // 优惠码code
|
|
|
258
|
+ gift_card_code: '', // 礼品卡code
|
258
|
}).then(res => {
|
259
|
}).then(res => {
|
259
|
if (res.code === 200) {
|
260
|
if (res.code === 200) {
|
260
|
let comp = res.data || {};
|
261
|
let comp = res.data || {};
|
|
@@ -549,12 +550,12 @@ Page({ |
|
@@ -549,12 +550,12 @@ Page({ |
549
|
let param = {
|
550
|
let param = {
|
550
|
payment_id: PAYMENT.ID,
|
551
|
payment_id: PAYMENT.ID,
|
551
|
payment_type: PAYMENT.TYPE,
|
552
|
payment_type: PAYMENT.TYPE,
|
552
|
- use_red_envelopes: 0,// 使用的红包,单位元
|
553
|
+ use_red_envelopes: 0, // 使用的红包,单位元
|
553
|
use_yoho_coin: 0, // 使用的yoho币金额,单位元
|
554
|
use_yoho_coin: 0, // 使用的yoho币金额,单位元
|
554
|
- coupon_code: "", // 优惠券code,多个用","分割
|
|
|
555
|
- is_print_price: "N", // string 否 "Y" "N" 是否打印
|
|
|
556
|
- is_continue_buy: "N", // string 否 "N" "Y" 是否继续结算
|
|
|
557
|
- gift_card_code: "", // 礼品卡code
|
555
|
+ coupon_code: '', // 优惠券code,多个用","分割
|
|
|
556
|
+ is_print_price: 'N', // string 否 "Y" "N" 是否打印
|
|
|
557
|
+ is_continue_buy: 'N', // string 否 "N" "Y" 是否继续结算
|
|
|
558
|
+ gift_card_code: '', // 礼品卡code
|
558
|
qhy_union: JSON.stringify({client_id: app.getUnionType()})
|
559
|
qhy_union: JSON.stringify({client_id: app.getUnionType()})
|
559
|
};
|
560
|
};
|
560
|
|
561
|
|