Commit 2cdede25 authored by 李智书's avatar 李智书

Merge branch 'develop' of https://git.xiaopay.net/lizhishu/xzf_uniapp-wechat-web into develop

parents 5d55f334 b0d48f83
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
<view class="depotMoney" @click="depotMoney(item.value,index)" <view class="depotMoney" @click="depotMoney(item.value,index)"
v-bind:class="(MoneyIndex==index)?'choiceClass':''" :data-money="item.value||0" v-bind:class="(MoneyIndex==index)?'choiceClass':''" :data-money="item.value||0"
v-for="(item,index) in MoneyList" :key="index"> v-for="(item,index) in MoneyList" :key="index">
<span class="value"> <span class="value">
{{item.value}} {{item.value}}
</span> </span>
...@@ -240,10 +241,10 @@ ...@@ -240,10 +241,10 @@
bindCardNo: '' bindCardNo: ''
}, },
ImgUrl: this.$ImgUrl, ImgUrl: this.$ImgUrl,
MoneyList: Array(6).fill(1).map((v, index) => { MoneyList: Array(5).fill(1).map((v, index) => {
return { return {
lable: index == 5 ? '其他金额' : '', lable: index == 4 ? '其他金额' : '',
value: index == 5 ? '' : 50 * (index + 1), value: index == 4 ? '' : 50 * (index + 1) +50,
tips: index == 1 ? "推荐充值" : null tips: index == 1 ? "推荐充值" : null
} }
}), }),
...@@ -953,13 +954,12 @@ ...@@ -953,13 +954,12 @@
} }
.MoneyBox { .MoneyBox {
display: flex;
justify-content: space-between;
flex-wrap: wrap; flex-wrap: wrap;
height: auto; height: auto;
color: #888888; color: #888888;
width: 686rpx; width: 686rpx;
margin: 0 auto; margin: 0 auto;
overflow: hidden;
} }
.choiceClass { .choiceClass {
...@@ -977,6 +977,8 @@ ...@@ -977,6 +977,8 @@
text-align: center; text-align: center;
position: relative; position: relative;
box-shadow: 0px 9rpx 23rpx 0rpx rgba(25, 26, 88, 0.07); box-shadow: 0px 9rpx 23rpx 0rpx rgba(25, 26, 88, 0.07);
margin-right: 2px;
float: left;
} }
.depotMoney .value { .depotMoney .value {
......
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