|
@@ -73,7 +73,7 @@ const psnCashpayAmt = computed(() => {
|
|
|
let cashpayAmt = createOrderRequest.totalFee - createOrderRequest.fundpayAmt -
|
|
|
createOrderRequest.acctpayAmt - createOrderRequest.couponAmt
|
|
|
cashpayAmt = cashpayAmt < 0 ? 0 : cashpayAmt
|
|
|
- createOrderRequest.cashpayAmt = cashpayAmt
|
|
|
+ createOrderRequest.cashpayAmt = cashpayAmt.toFixed(2)
|
|
|
return makeMoneyStyle(cashpayAmt)
|
|
|
})
|
|
|
|
|
@@ -119,7 +119,6 @@ function executePaymentAction(order) {
|
|
|
package: order.prepayId,
|
|
|
signType: order.signType,
|
|
|
paySign: order.paySign,
|
|
|
- totalFee: order.totalFee,
|
|
|
}, () => {
|
|
|
queryOrderTradeState(order.tradeNo)
|
|
|
})
|