Commit c07bfe8f authored by 袁玲利's avatar 袁玲利

充值界面修改

parent db0ea732
This diff is collapsed.
......@@ -27,12 +27,8 @@
</view>
</view>
<view class="lastLine">
<view>**** **** ****
{{
bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)
}}
</view>
<view class="right">
<view>**** **** **** {{ bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)}}</view>
<view class="right" @click="ToWalletTx">
<!-- <image class="btn" :src="ImgUrl + 'user/cashBtn.png'" alt=""></image> -->
提现
</view>
......@@ -81,7 +77,19 @@
<span>账户充值</span>
</view>
<!-- 充值的金额 -->
<view class="moneyWrapper">
<view class="MoneyBox">
<view class="depotMoney" @click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'choiceClass' : ''" :data-money="item.value || 0"
v-for="(item, index) in MoneyList" :key="index">
<span class="value">
{{ item.value }}
</span>
<span style="font-size: 28rpx; font-weight: 600; margin-left: 7rpx">{{
item.lable
}}</span>
</view>
</view>
<view class="moneyWrapper" style="display: none;">
<view class="moneyItem" @click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'active' : ''" :data-money="item.value || 0"
v-for="(item, index) in MoneyList" :key="index">
......@@ -158,7 +166,7 @@
</view>
</view>
<!-- 其他充值金额 -->
<view class="contentBox" v-if="depotMoneyother">
<view class="contentBox" style="display: none;" v-if="depotMoneyother">
<view class="OtherTitle">充值金额</view>
<view class="inputOtherM">
<span></span>
......@@ -1304,6 +1312,7 @@
}
}
.MoneyBox {
flex-wrap: wrap;
height: auto;
......@@ -1331,7 +1340,6 @@
margin-right: 2px;
float: left;
}
.depotMoney .value {
font-size: 45rpx;
font-family: PingFangSC-Semibold, PingFang SC;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment