You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
2.1 KiB
115 lines
2.1 KiB
<template>
|
|
<view class="recharge">
|
|
<view class="recharge-hd">
|
|
<view class="item">
|
|
<view class="a">充值方式</view>
|
|
<view class="b">
|
|
<view class="select select-on">中国建设银行银行卡</view>
|
|
<u-icon style="margin-left:10rpx" name="arrow-right"></u-icon>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="recharge-bd">
|
|
<view class="a">充值金额</view>
|
|
<view class="b">
|
|
¥<input placeholder="请输入金额" type="number" />
|
|
</view>
|
|
<view class="c">该卡本次最多可充值¥100000</view>
|
|
</view>
|
|
<view class="recharge-fd">
|
|
确认充值
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.recharge{
|
|
padding: 20rpx;
|
|
overflow: hidden;
|
|
&-hd{
|
|
padding: 0 30rpx;
|
|
background-color: #fff;
|
|
.item{
|
|
padding: 40rpx 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
border-bottom: 1px solid #f3f3f3;
|
|
.a{
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
color: #A3A3A3;
|
|
}
|
|
.b{
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
color: #414141;
|
|
.select{
|
|
color: #A3A3A3;
|
|
&-on{
|
|
color: #414141;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
&-bd{
|
|
padding: 0 30rpx;
|
|
background-color: #fff;
|
|
.a{
|
|
padding: 20rpx 0;
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
color: #A3A3A3;
|
|
}
|
|
.b{
|
|
display: flex;
|
|
align-items: baseline;
|
|
font-size: 68rpx;
|
|
font-weight: 500;
|
|
color: #414141;
|
|
input{
|
|
margin-left: 20rpx;
|
|
font-size: 36rpx;
|
|
font-weight: 400;
|
|
color: #E0E0E0;
|
|
line-height: 60rpx;
|
|
}
|
|
}
|
|
.c{
|
|
padding: 20rpx 0 60rpx;
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
color: #A3A3A3;
|
|
}
|
|
}
|
|
&-fd{
|
|
width: 664rpx;
|
|
line-height: 104rpx;
|
|
background: rgba(245,83,73,0.49);
|
|
border-radius: 8rpx;
|
|
text-align: center;
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
color: #FFFFFF;
|
|
margin: 0 auto;
|
|
margin-top: 40rpx;
|
|
}
|
|
}
|
|
</style>
|
|
|