release(custom):
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-09-06 21:35:17 +08:00
parent 2f31aa7b70
commit 94822f693a
7 changed files with 22 additions and 41 deletions

View File

@@ -65,6 +65,8 @@ interface GoodsItem {
Goods: {
name: string;
cover: string;
discount_price: number;
exchange: number;
};
ID: number;
gid: string;
@@ -275,8 +277,8 @@ const closed = () => {
<view class="flex flex-col justify-between flex-1">
<view class="title">{{ itm.Goods?.name }}</view>
<view class="text-[#F83D3D] mt-5">
<view>{{ itm.pay_price }}
<text v-if="itm.pay_integral > 0">+{{ itm.pay_integral }}积分</text>
<view>{{ itm.Goods.discount_price }}
<text v-if="itm.Goods.exchange > 0">+{{ itm.Goods.exchange }}积分</text>
</view>
</view>
</view>

View File

@@ -86,8 +86,8 @@
<view class="flex flex-col justify-between flex-1">
<view class="title">{{ item.Goods?.name }}</view>
<view class="text-[#F83D3D] mt-5">
<view>{{ item.pay_price }}
<text v-if="item.pay_integral > 0">+{{ item.pay_integral }}积分</text>
<view>{{ item.Goods.discount_price }}
<text v-if="item.Goods.exchange > 0">+{{ item.Goods.exchange }}积分</text>
</view>
</view>
</view>