123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <template>
- <view class="content">
- <view class="box">
- <view class="text_style1">可以提现金额</view>
- <view class="money">{{money}}</view>
- <view class="hflex acenter jbetween cell">
- <view class="text_style2">提现至</view>
- <view class="hflex acenter">
- <view class="text_style3">中国招商银行</view>
- <u-icon name="arrow-right" color="#000" size="10"></u-icon>
- </view>
- </view>
- <view class="cell1">
- <view class="text_style2">提现金额</view>
- <u-input v-model="value" placeholder="请输入提现金额" border="bottom" fontSize="20" @change="change">
- <view slot="prefix" class="text_style2">¥</view>
- <template slot="suffix">
- <view class="text1" @click="all">全部提现</view>
- </template>
- </u-input>
- </view>
- <view class="cell1 hflex acenter jbetween">
- <view class="text_style1">提现手续费</view>
- <view class="text_style2">¥{{service_money}}</view>
- </view>
- <view class="cell1 hflex acenter jbetween">
- <view class="text_style1">实际到账金额</view>
- <view class="text_style2">¥{{amount}}</view>
- </view>
- <view class="bottom">
- <view class="btn" @click="withdraw">立即提现</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import $api from '@/static/js/api.js'
- var that = ''
- export default {
- data() {
- return {
- money: '1008.06',
- value: '',
- service: 0.01,
- service_money: 0,
- amount: 0,
- }
- },
- onLoad() {
- that = this
- },
- methods: {
- // 全部体系那
- all() {
- that.value = that.money
- that.service_money = (Number(that.value) * that.service).toFixed(2)
- that.amount = (that.value - that.service_money).toFixed(2)
- },
- // 输入框发生改变
- change(e) {
- console.log(typeof(e));
- that.value = e
- that.service_money = (Number(that.value) * that.service).toFixed(2)
- that.amount = (that.value - that.service_money).toFixed(2)
- },
- // 立即提现
- withdraw() {
- if(that.value > 0) {
-
- } else {
- $api.info("请输入提现金额")
- }
- }
- },
- }
- </script>
- <style lang="scss" scoped>
- .content::v-deep {
- padding: 0 30rpx;
- .box {
- margin: 32rpx 0 20rpx;
- .text_style1 {
- font-size: 30rpx;
- color: #666;
- }
- .money {
- font-size: 60rpx;
- color: #222;
- margin: 20rpx 0;
- }
- .text_style2 {
- font-size: 28rpx;
- color: #222;
- }
- .cell {
- padding: 32rpx 0;
- border-bottom: 1rpx solid #f3f3f3;
-
- .text_style3 {
- font-size: 24rpx;
- color: #222;
- }
- }
- .cell1 {
- margin: 32rpx 0;
- .u-input {
- width: 100% !important;
- height: 104rpx !important;
- font-size: 60rpx !important;
- box-sizing: border-box;
- // padding: 30rpx 48rpx !important;
- margin: 26rpx 0;
- }
- .text1 {
- font-size: 26rpx;
- color: #506dff;
- }
- }
- .bottom {
- margin-top: 100rpx;
- .btn {
- width: 100%;
- height: 84rpx;
- border-radius: 48rpx;
- background-color: #506dff;
- text-align: center;
- line-height: 84rpx;
- font-size: 36rpx;
- color: #fff;
- }
- }
- }
- }
- </style>
|