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

充值界面修改

parent db0ea732
This diff is collapsed.
...@@ -27,12 +27,8 @@ ...@@ -27,12 +27,8 @@
</view> </view>
</view> </view>
<view class="lastLine"> <view class="lastLine">
<view>**** **** **** <view>**** **** **** {{ bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)}}</view>
{{ <view class="right" @click="ToWalletTx">
bankInfo_.accountNo.slice(bankInfo_.accountNo.length - 4)
}}
</view>
<view class="right">
<!-- <image class="btn" :src="ImgUrl + 'user/cashBtn.png'" alt=""></image> --> <!-- <image class="btn" :src="ImgUrl + 'user/cashBtn.png'" alt=""></image> -->
提现 提现
</view> </view>
...@@ -81,7 +77,19 @@ ...@@ -81,7 +77,19 @@
<span>账户充值</span> <span>账户充值</span>
</view> </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)" <view class="moneyItem" @click="depotMoney(item.value, index)"
v-bind:class="MoneyIndex == index ? 'active' : ''" :data-money="item.value || 0" v-bind:class="MoneyIndex == index ? 'active' : ''" :data-money="item.value || 0"
v-for="(item, index) in MoneyList" :key="index"> v-for="(item, index) in MoneyList" :key="index">
...@@ -158,7 +166,7 @@ ...@@ -158,7 +166,7 @@
</view> </view>
</view> </view>
<!-- 其他充值金额 --> <!-- 其他充值金额 -->
<view class="contentBox" v-if="depotMoneyother"> <view class="contentBox" style="display: none;" v-if="depotMoneyother">
<view class="OtherTitle">充值金额</view> <view class="OtherTitle">充值金额</view>
<view class="inputOtherM"> <view class="inputOtherM">
<span></span> <span></span>
...@@ -1304,6 +1312,7 @@ ...@@ -1304,6 +1312,7 @@
} }
} }
.MoneyBox { .MoneyBox {
flex-wrap: wrap; flex-wrap: wrap;
height: auto; height: auto;
...@@ -1312,12 +1321,12 @@ ...@@ -1312,12 +1321,12 @@
margin: 0 auto; margin: 0 auto;
overflow: hidden; overflow: hidden;
} }
.choiceClass { .choiceClass {
background: rgba(39, 266, 148, 0.1) !important; background: rgba(39, 266, 148, 0.1) !important;
color: #28d79c; color: #28d79c;
} }
.MoneyBox view { .MoneyBox view {
width: 220rpx; width: 220rpx;
height: 120rpx; height: 120rpx;
...@@ -1331,7 +1340,6 @@ ...@@ -1331,7 +1340,6 @@
margin-right: 2px; margin-right: 2px;
float: left; float: left;
} }
.depotMoney .value { .depotMoney .value {
font-size: 45rpx; font-size: 45rpx;
font-family: PingFangSC-Semibold, PingFang SC; 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