123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- <template>
- <view class="box">
- <view class="header">
- <view class="title">支付宝提现</view>
- <view class="moneyView">
- <text class="icon">¥</text>
- <input type="text" class="moneyInput" placeholder-style="color:#999999; font-size:30rpx" placeholder="请输入提现金额" v-model="money"/>
- <view class="tixian">全部提现</view>
- </view>
- <view class="zongMoney">可提现金额:¥934.23</view>
-
- <view class="line"></view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- money:'',
-
- }
- },
- methods: {
- }
- }
- </script>
- <style>
- .box {
- min-height: 100vh;
- background: #F4F5F7;
- padding-top: 20rpx;
- }
- .header{
- background-color: #FFFFFF;
- margin: 0 24rpx;
- border-radius: 10rpx;
- padding: 30rpx 20rpx;
- }
- .title{
- font-size: 30rpx;
- color: #3C3C3C;
- font-weight: bold;
- }
- .moneyView{
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin: 15rpx 0;
- }
- .icon{
- font-size: 50rpx;
- color: #222222;
- font-weight: bold;
- }
- .moneyInput{
- font-size: 70rpx;
- color: #222222;
- font-weight: bold;
- flex-grow: 1;
- }
- .tixian{
- font-size: 26rpx;
- color: #FF4F00;
- width: 150rpx;
- }
- .zongMoney{
- font-size: 26rpx;
- color: #999999;
- margin-bottom: 30rpx;
- }
- .line{
- margin: 0 20rpx;
- background-color: #EEEEEE;
- height: 1rpx;
- }
- </style>
|