123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <template>
- <view class="container">
- <view class="header">
- <view class="row-box">
- <view class="title">可提现金额</view>
- <view class="row">
- <view class="tit">¥</view>
- <view class="counts">1000.10</view>
- </view>
- </view>
- <view class="row-box">
- <view class="title">申请提现金额</view>
- <view class="row">
- <view class="tit">¥</view>
- <view class="counts">1000</view>
- </view>
- </view>
- <view class="buttom" @click="">全部提现</view>
- </view>
- <view class="conent">
- <view class="text">提现到</view>
- <view class="conent-box"></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data () {
- return {}
- },
- methods: {}
- }
- </script>
- <style lang="scss">
- .header {
- height: 330rpx;
- background-color: #fff;
- .row-box {
- height: 130rpx;
- width: 700rpx;
- background-color: #fff;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1rpx solid #E6E6E6;
- margin: 0 auto;
- .title {
- font-size: 32rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- .row {
- display: flex;
- justify-content: center;
- align-items: center;
- .counts {
- font-size: 50rpx;
- font-family: Source Han Sans CN;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- .buttom {
- margin-top: 10rpx;
- margin-left: 620rpx;
- flex-direction: column;
- width: 105rpx;
- height: 25rpx;
- font-size: 26rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #FF4C4C;
- line-height: 42rpx;
- }
- }
- .conent {
- margin-top: 20rpx;
- height: 890rpx;
- background-color: #fff;
- .text {
- font-size: 30rpx;
- font-family: Source Han Sans CN;
- font-weight: 400;
- color: #333333;
- padding-top: 20rpx;
- margin-left: 20rpx;
- }
- .conent-box {
- height: 130rpx;
- width: 700rpx;
- border-bottom: 1rpx solid #E6E6E6;
- margin: 0 auto;
- }
- }
-
- </style>
|