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

This commit is contained in:
2024-09-05 20:17:16 +08:00
parent 94b6a9da10
commit 2f31aa7b70
4 changed files with 11 additions and 10 deletions

View File

@@ -207,7 +207,7 @@ defineExpose({
<text>{{ cartInfo.count }}</text> <text>{{ cartInfo.count }}</text>
</view> </view>
</view> </view>
<view class="ml-1 text-[25px]"> <view class="ml-1 text-[28px]">
<text>总金额: {{ cartInfo.discount_price.toFixed(2) }}</text> <text>总金额: {{ cartInfo.discount_price.toFixed(2) }}</text>
<text v-if="!IsPendingOrder">积分抵扣: {{ cartInfo.discount_integral.toFixed(2) }} <text v-if="!IsPendingOrder">积分抵扣: {{ cartInfo.discount_integral.toFixed(2) }}
</text> </text>

View File

@@ -54,7 +54,7 @@
color: #fff; color: #fff;
padding: 45px 100px; padding: 45px 100px;
display: flex; display: flex;
justify-content: space-between; justify-content: center;
align-items: center; align-items: center;
text-align: center; text-align: center;

View File

@@ -130,15 +130,15 @@ Taro.useReachBottom(() => {
<view> <view>
<view class="card"> <view class="card">
<view class="container"> <view class="container">
<view class=""> <view>
<view class="font-bold text-[35px]">{{ row }}</view> <view class="font-bold text-[35px]">{{ row }}</view>
<view class="text-[25px] mt-2">可提现余额</view> <view class="text-[25px] mt-2">可提现余额</view>
</view> </view>
<view class="line"></view> <!-- <view class="line"></view>
<view class=""> <view class="">
<view class="font-bold text-[35px]">{{ str }}</view> <view class="font-bold text-[35px]">{{ str }}</view>
<view class="text-[25px] mt-2">实际到账</view> <view class="text-[25px] mt-2">实际到账</view>
</view> </view> -->
</view> </view>
<view class="footer"> <view class="footer">
<text>到账方式</text> <text>到账方式</text>
@@ -182,10 +182,10 @@ Taro.useReachBottom(() => {
<view class="flex justify-between items-center"> <view class="flex justify-between items-center">
<view class="text-[25px] text-[#9C9C9C]">到账金额</view> <view class="text-[25px] text-[#9C9C9C]">到账金额</view>
<view class="text-[27px]" :class="item.status === 1 <view class="text-[27px]" :class="item.status === 1
? 'success' ? 'success'
: item.status === 1 : item.status === 1
? 'danger' ? 'danger'
: 'warning' : 'warning'
">{{ ">{{
item.status === 1 item.status === 1
? '已打款' ? '已打款'

View File

@@ -42,7 +42,8 @@
<nut-cell-group class="w-full"> <nut-cell-group class="w-full">
<nut-cell class="text-[#333333]" title="支付方式"></nut-cell> <nut-cell class="text-[#333333]" title="支付方式"></nut-cell>
<nut-cell v-for="(item, index) in payList" :key="index" class="flex items-center" :title="item.name" <nut-cell v-for="(item, index) in payList" :key="index" class="flex items-center" :title="item.name"
:desc="item.number > 0 ? `可用积分:${item.number}` : ''" @click="cellClick(item.ID)"> :desc="item.number > 0 ? `可用积分:${item.number}` : item.name.includes('微信') ? '微信全额支付' : ''"
@click="cellClick(item.ID)">
<template #icon> <template #icon>
<IconFont size="30" :name="item.icon" /> <IconFont size="30" :name="item.icon" />
</template> </template>