From ac741f93391cc52957177654a1373291d7bcf3a7 Mon Sep 17 00:00:00 2001 From: linxi <957440651@qq.com> Date: Tue, 18 Aug 2026 13:44:00 +0800 Subject: [PATCH] =?UTF-8?q?Fix=EF=BC=9A5701=20=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E3=80=91=E3=80=90=E6=88=91=E7=9A=84?= =?UTF-8?q?=E8=AE=A2=E5=8D=95-=E9=9B=86=E9=87=87=E4=B8=AD=E5=BF=83?= =?UTF-8?q?=E3=80=91=E8=AE=A2=E5=8D=95=E5=88=97=E8=A1=A8=E9=87=87=E8=B4=AD?= =?UTF-8?q?=E6=89=B9=E5=8F=91=E5=95=86=E5=93=81=E5=8D=A1=E7=89=87=E6=9C=AA?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=95=86=E5=93=81=E5=90=8D=E7=A7=B0=E4=BF=A1?= =?UTF-8?q?=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/order/MyOrder/index.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pages/order/MyOrder/index.vue b/pages/order/MyOrder/index.vue index 28f8952..db51940 100644 --- a/pages/order/MyOrder/index.vue +++ b/pages/order/MyOrder/index.vue @@ -1043,7 +1043,7 @@ export default { if (isCustomGift) { return { image: this.formatCollectiveImage(item.giftImage), - name: item.giftName || '商品信息', + name: item.giftName, sku: item.specName || '', qty: Number(item.giftNum) || 1, price: 0, @@ -1096,8 +1096,9 @@ export default { item.productName || item.giftName || item.name || - item.title || - '商品信息', + productInfo.storeName || + productInfo.cateName || + item.cateName, price: Number(rawPrice) || 0, showPrice: true, sku: rawSku, @@ -1131,7 +1132,7 @@ export default { }, getCollectiveProductName(cart) { const productInfo = (cart && cart.productInfo) || {} - return productInfo.storeName || cart.storeName || '商品信息' + return productInfo.storeName || cart.storeName }, getCollectiveProductSku(cart) { const productInfo = (cart && cart.productInfo) || {}