This commit is contained in:
@@ -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>
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
? '已打款'
|
? '已打款'
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user