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

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>
<view class='money acea-row row-middle'> <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-price">{{goods.productAttr.price}}</text>
<text <text
class="money-unit">/{{goods.productAttr.sku || goods.product.unit_name}}</text> class="money-unit">/{{goods.productAttr.sku || goods.product.unit_name}}</text>

View File

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