Authored by 郝肖肖

'ensure-eslint-fix'

... ... @@ -52,7 +52,7 @@ export default {
return api.get({
url: '',
data: Object.assign({
method: 'app.Shopping.payment'
method: 'app.Shopping.payment'
}, params)
});
},
... ... @@ -66,7 +66,7 @@ export default {
return api.get({
url: '',
data: Object.assign({
method: 'app.Shopping.compute'
method: 'app.Shopping.compute'
}, params)
});
},
... ... @@ -80,7 +80,7 @@ export default {
return api.get({
url: '',
data: Object.assign({
method: 'app.Shopping.submit'
method: 'app.Shopping.submit'
}, params)
});
}
... ...
... ... @@ -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()})
};
... ...
... ... @@ -6,7 +6,7 @@
</view>
<view class="split-line"></view>
<view class="tip" wx:if="{{isJit && package_title_detail}}">
<text class="tipText">{{package_title_detail}}</text>
<text class="tip-text">{{package_title_detail}}</text>
</view>
<view class="split-line"></view>
<view class="goods-list">
... ...
/* stylelint-disable-next-line */
page {
background-color: #f0f0f0;
}
... ... @@ -32,9 +33,8 @@ page {
align-items: center;
}
.container .tip .tipText {
.container .tip .tip-text {
color: #444;
font-family: PingFang SC;
font-size: 30rpx;
background-color: white;
text-overflow: ellipsis;
... ... @@ -151,7 +151,3 @@ page {
border-radius: 8rpx;
box-sizing: border-box;
}
... ...