bug修复
This commit is contained in:
@@ -256,7 +256,7 @@ const payment = async () => {
|
||||
transactionPrice: orderBean?.value?.totalPrice,
|
||||
useGold: orderBean.value?.useGold || 0,
|
||||
detailBos: [{
|
||||
integralNumber: orderBean?.value?.totalPrice || 0,
|
||||
integralNumber: Math.floor(orderBean?.value?.totalPrice || 0),
|
||||
onlinePayResult: '',
|
||||
payName: '收钱吧',
|
||||
payTypeId: paymentList.find((res: any) => res.type === 'ShouQianBa')?.id,
|
||||
@@ -264,8 +264,13 @@ const payment = async () => {
|
||||
}]
|
||||
};
|
||||
await overPayment(paymentParams);
|
||||
await uni.navigateBack()
|
||||
uni.hideLoading();
|
||||
showToast('支付成功', {
|
||||
icon: 'success',
|
||||
complete: () => {
|
||||
uni.navigateBack();
|
||||
uni.hideLoading();
|
||||
}
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
||||
|
Reference in New Issue
Block a user