Fix:4088 【商城小程序】领取盲盒礼包后,礼包订单申请退款页面,应隐藏退款金额信息

This commit is contained in:
LinCyJang
2025-07-29 21:33:28 +08:00
parent 4560b76f75
commit 0ef2d7d2ac
+6 -4
View File
@@ -2,11 +2,12 @@
<view class="apply-return"> <view class="apply-return">
<view class="goodsStyle acea-row row-between" v-for="cart in orderInfo.cartInfo" :key="cart.id"> <view class="goodsStyle acea-row row-between" v-for="cart in orderInfo.cartInfo" :key="cart.id">
<view class="pictrue"> <view class="pictrue">
<image :src="cart.productInfo.image" class="image" /> <image v-if="orderInfo.isGiftCardReceiveBlind === 0" :src="cart.productInfo.image" class="image" />
<image v-else class="image" :src="webUrl+'/orderIcon/盲盒礼包.png'"></image>
</view> </view>
<view class="text acea-row row-between" > <view class="text acea-row row-between" >
<view class="name line2">{{ cart.productInfo.storeName }}</view> <view class="name line2">{{ orderInfo.isGiftCardReceiveBlind === 0 ? cart.productInfo.storeName : '盲盒礼包' }}</view>
<view class="money"> <view class="money" v-if="orderInfo.isGiftCardReceiveBlind === 0">
<view> <view>
¥{{ ¥{{
cart.productInfo.attrInfo cart.productInfo.attrInfo
@@ -23,7 +24,7 @@
<view>退货件数</view> <view>退货件数</view>
<view class="num">{{ orderInfo.totalNum }}</view> <view class="num">{{ orderInfo.totalNum }}</view>
</view> </view>
<view class="item acea-row row-between-wrapper"> <view class="item acea-row row-between-wrapper" v-if="orderInfo.isGiftCardReceiveBlind === 0">
<view>退款金额</view> <view>退款金额</view>
<view class="num">¥{{ orderInfo.payPrice }}</view> <view class="num">¥{{ orderInfo.payPrice }}</view>
</view> </view>
@@ -65,6 +66,7 @@ export default {
mixins: [pageListenMixins], mixins: [pageListenMixins],
data() { data() {
return { return {
webUrl: this.$VUE_APP_RESOURCES_URL,
url: `${VUE_APP_API_URL}/upload/image`, url: `${VUE_APP_API_URL}/upload/image`,
headers: { headers: {
Authorization: "Bearer " + this.$store.state.token Authorization: "Bearer " + this.$store.state.token