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