|
@@ -5,18 +5,18 @@
|
|
|
<view class="sxjs-head flex flex_column align-center justify_center">
|
|
|
<view>已用额度</view>
|
|
|
<view class="edu">
|
|
|
- ¥<text>{{info.usedAmount}}</text>
|
|
|
+ <text>{{info.usedAmount}}</text>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="sxjs-head-grid flex align-center justify_between">
|
|
|
<view :class="tabIndex==0?'active':''" @click="tabChange(0)">
|
|
|
<view>待结算</view>
|
|
|
- <view class="edu">¥<text>{{info?info.waitSettleAmount:0}}</text></view>
|
|
|
+ <view class="edu"><text>{{info?info.waitSettleAmount:0}}</text></view>
|
|
|
<view class="line"></view>
|
|
|
</view>
|
|
|
<view :class="tabIndex==1?'active':''" @click="tabChange(1)">
|
|
|
<view>已冻结</view>
|
|
|
- <view class="edu">¥<text>{{info.freezeAmount}}</text></view>
|
|
|
+ <view class="edu"><text>{{info.freezeAmount}}</text></view>
|
|
|
<view class="line"></view>
|
|
|
</view>
|
|
|
</view>
|
|
@@ -24,7 +24,7 @@
|
|
|
<view class="ds-box">
|
|
|
<scroll-view style="height: calc(100vh - 370upx);position: relative;" scroll-y @scrolltolower="loadMore">
|
|
|
<view class="notes-msg" v-if="tabIndex==1">
|
|
|
- 已冻结金额是指状态为“待取货”的取货单结算金额合计暂时无需支付,但是会占用授信额度,请尽快处理
|
|
|
+ 已冻结金额是指状态为“待取货”的订单结算金额合计,暂时无需支付,但是会占用授信额度,请尽快处理
|
|
|
</view>
|
|
|
<!-- 列表 -->
|
|
|
<view class="ds-list" v-for="item in list" :key="item.id">
|