处理订单删除的错误,调整购物车商品单位显示

This commit is contained in:
luofei 2024-05-13 16:52:56 +08:00
parent 90f6534fce
commit 9c6784a67d
2 changed files with 5 additions and 4 deletions

View File

@ -88,7 +88,7 @@
</view>
<view class='money acea-row row-middle'>
<view>
<view class="line1" style="max-width: 260rpx;">
<text class="money-price">{{goods.productAttr.price}}</text>
<text
class="money-unit">/{{goods.productAttr.sku || goods.product.unit_name}}</text>

View File

@ -221,7 +221,7 @@
<view class="goods-wrapper">
<view>
<view class="info-box" v-for="(item,index) in orderList" :key="index">
<view class="title" @click="goStore(item)">
<view class="title" @click="goMall(item)">
<text class="iconfont icon-shangjiadingdan"></text>
<text v-if="item.merchant" class="txt line1"
style="max-width: 500rpx;">{{item.merchant.mer_name}}</text>
@ -479,7 +479,8 @@
orderTake,
applyInvoiceApi,
uploadEnvidenceApi,
refundListNew
refundListNew,
refundDel
} from '@/api/order.js';
import {
getUserInfo
@ -945,7 +946,7 @@
success: function(res) {
if (res.confirm) {
refundDel(item.refund_order_id).then(res => {
self.goodsList.splice(index, 1)
self.orderList.splice(index, 1)
})
uni.showToast({
title: '删除成功',