Fix:6018 【礼品集采中心小程序】我的订单-集采中心,隐藏自建订单详情页的实付款

This commit is contained in:
linxi
2026-09-11 16:01:27 +08:00
parent e6d8bff772
commit 0e04c560bc
+3 -1
View File
@@ -317,7 +317,7 @@
</view> </view>
</view> </view>
<u-divider></u-divider> <u-divider></u-divider>
<view class="v12-justify-between v12-align-center v12-mt-3" v-if="orderInfo.isGiftCardReceiveBlind === 0"> <view class="v12-justify-between v12-align-center v12-mt-3" v-if="orderInfo.isGiftCardReceiveBlind === 0 && !isCustomGiftOrder(orderInfo)">
<view class="v12-font-28 v12-font-bold v12-dark-text"> <view class="v12-font-28 v12-font-bold v12-dark-text">
实付款 实付款
</view> </view>
@@ -498,6 +498,7 @@
<text class="v12-font-22 v12-dark1-text"> <text class="v12-font-22 v12-dark1-text">
共{{ orderInfo.totalNum }}件商品 共{{ orderInfo.totalNum }}件商品
</text> </text>
<template v-if="!isCustomGiftOrder(orderInfo)">
<text class="v12-font-bold v12-dark-text v12-font-28 v12-mx-2"> <text class="v12-font-bold v12-dark-text v12-font-28 v12-mx-2">
实付款 实付款
</text> </text>
@@ -507,6 +508,7 @@
<text class="v12-font-bold v12-primary-text v12-font-28"> <text class="v12-font-bold v12-primary-text v12-font-28">
{{ force2Decimal(orderInfo.payPrice) }} {{ force2Decimal(orderInfo.payPrice) }}
</text> </text>
</template>
</view> </view>
<view class="bnt v12-primary-text v12-primary-border v12-ml-1" @click="subscribePay">立即付款</view> <view class="bnt v12-primary-text v12-primary-border v12-ml-1" @click="subscribePay">立即付款</view>
</view> </view>