|
@@ -2,7 +2,7 @@
|
|
<view>
|
|
<view>
|
|
<u-navbar title="我的余额">
|
|
<u-navbar title="我的余额">
|
|
<view class="slot-wrap">
|
|
<view class="slot-wrap">
|
|
- <span class="navBtn" @click="toRefundList">退余额</span>
|
|
|
|
|
|
+ <span class="navBtn oldTextjp2" oldstyle="font-size: 16px;" @click="toRefundList">退余额</span>
|
|
</view>
|
|
</view>
|
|
</u-navbar>
|
|
</u-navbar>
|
|
<view class="balance">
|
|
<view class="balance">
|
|
@@ -18,11 +18,11 @@
|
|
</view>
|
|
</view>
|
|
</u-modal>
|
|
</u-modal>
|
|
</view>
|
|
</view>
|
|
- <view class="balanceCard-main">
|
|
|
|
|
|
+ <view class="balanceCard-main oldTextjp2" oldstyle="font-size: 16px;">
|
|
<h2 v-if="personAccount.availableAmount != null">{{personAccount.availableAmount.toFixed(2)}}元</h2>
|
|
<h2 v-if="personAccount.availableAmount != null">{{personAccount.availableAmount.toFixed(2)}}元</h2>
|
|
<view class="balanceCard-btn" @click="rechargeNow">立即充值</view>
|
|
<view class="balanceCard-btn" @click="rechargeNow">立即充值</view>
|
|
</view>
|
|
</view>
|
|
- <view class="balanceCard-foot">
|
|
|
|
|
|
+ <view class="balanceCard-foot oldTextjp2" oldstyle="font-size: 16px;">
|
|
<view class="balanceCard-item" v-if="personAccount.totalAmount != null">可用余额{{personAccount.totalAmount.toFixed(2)}}元</view>
|
|
<view class="balanceCard-item" v-if="personAccount.totalAmount != null">可用余额{{personAccount.totalAmount.toFixed(2)}}元</view>
|
|
<view class="balanceCard-item" v-if="personAccount.frozenTotal != null">冻结金额{{personAccount.frozenTotal.toFixed(2)}}元</view>
|
|
<view class="balanceCard-item" v-if="personAccount.frozenTotal != null">冻结金额{{personAccount.frozenTotal.toFixed(2)}}元</view>
|
|
</view>
|
|
</view>
|
|
@@ -32,9 +32,9 @@
|
|
<view class="balanceMain-title">
|
|
<view class="balanceMain-title">
|
|
<view class="title">
|
|
<view class="title">
|
|
<u-icon name="todo-fill" custom-prefix="custom-icon" color="#6BC6A7" size="40"></u-icon>
|
|
<u-icon name="todo-fill" custom-prefix="custom-icon" color="#6BC6A7" size="40"></u-icon>
|
|
- <span>充值明细</span>
|
|
|
|
|
|
+ <span class="oldTextjp" oldstyle="font-size: 20px;">充值明细</span>
|
|
</view>
|
|
</view>
|
|
- <view class="more" @click="seeAll">
|
|
|
|
|
|
+ <view class="more oldTextjp2" oldstyle="font-size: 16px;" @click="seeAll">
|
|
<span>查看全部</span>
|
|
<span>查看全部</span>
|
|
<u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
|
|
<u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#B3B3B3" size="32"></u-icon>
|
|
</view>
|
|
</view>
|
|
@@ -51,7 +51,7 @@
|
|
</view>
|
|
</view>
|
|
<view class="carNone" v-if="accountList.length == 0">
|
|
<view class="carNone" v-if="accountList.length == 0">
|
|
<img src="static/img/暂无数据-缺省页.png" alt="">
|
|
<img src="static/img/暂无数据-缺省页.png" alt="">
|
|
- <p>本月暂无充值记录</p>
|
|
|
|
|
|
+ <p class="oldTextjp" oldstyle="font-size: 20px;">本月暂无充值记录</p>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -71,6 +71,7 @@
|
|
content: `总金额=可用余额+冻结金额。使用预付费充电时,在充电过程中会冻结部分金额,充电完成后将剩余金额返还至余额账户,每笔预充金额的冻结时间不超过96小时。`,
|
|
content: `总金额=可用余额+冻结金额。使用预付费充电时,在充电过程中会冻结部分金额,充电完成后将剩余金额返还至余额账户,每笔预充金额的冻结时间不超过96小时。`,
|
|
personAccount: {},
|
|
personAccount: {},
|
|
accountList: [],
|
|
accountList: [],
|
|
|
|
+ elderStatus: false,
|
|
}
|
|
}
|
|
},
|
|
},
|
|
onReady() {
|
|
onReady() {
|
|
@@ -84,6 +85,12 @@
|
|
|
|
|
|
this.getCarPersonAccount();
|
|
this.getCarPersonAccount();
|
|
this.getAccountRecordData();
|
|
this.getAccountRecordData();
|
|
|
|
+
|
|
|
|
+ if(this.carhelp.get("getElderModeClass") == "长辈模式") {
|
|
|
|
+ this.elderStatus = true;
|
|
|
|
+ } else {
|
|
|
|
+ this.elderStatus = false;
|
|
|
|
+ }
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
toRefundList() {
|
|
toRefundList() {
|