Commit 1c360223 authored by 符伟's avatar 符伟

Merge branch 'develop' into uat

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