代码提交
This commit is contained in:
@ -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: '已删除',
|
||||
|
Reference in New Issue
Block a user