代码提交

This commit is contained in:
黄少君
2023-11-15 19:59:37 +08:00
parent dcab74274f
commit 35b43ffd97
43 changed files with 1265 additions and 387 deletions

View File

@ -115,6 +115,7 @@
model
:purchase="item.cartNum"
:data="item.productInfo"
:price="item.truePrice"
v-for="(item, index) in orderInfoData.cartInfo"
>
</goods>
@ -133,7 +134,7 @@
</view>
<view class="info-cell ">
<view class="info-cell-label">总计</view>
<view class="info-cell-value">¥{{ orderInfoData.refundAmount }}</view>
<view class="info-cell-value">¥{{ orderInfoData.payPrice.toFixed(2) }}</view>
</view>
</view>
</view>
@ -160,7 +161,7 @@
服务类型
</view>
<view class="info-cell-value">
{{ orderInfoData.serviceType }}
{{ orderInfoData.serviceType===0?'仅退款':'退货退款' }}
</view>
</view>
<view
@ -321,8 +322,8 @@ const handleDelete = async () => {
success: async (res) => {
if (res.confirm) {
await afterSalesOrderDelete({
id: orderInfoData.value.id,
orderCode: orderInfoData.value.orderCode
id: orderId.value,
orderCode: orderInfoData.value.orderId
})
uni.showToast({
title: '已删除',