123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <template>
- <view class="content">
- <view class="card">
- <view class="money-num">
- {{info.money}}
- </view>
- <view class="money-text">
- 可提现金额
- </view>
- <view class="title">
- 提现金额
- </view>
- <view class="money-input row">
- <view class="icon">¥</view>
- <input type="number" class="input" v-model="money" />
- <view class="all">全部</view>
- </view>
- </view>
- <view class="bottom-btn">
- <view class="buttom-dom" @click="push">
- 确认
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 提现金额
- money:0,
- // 用户信息
- info: {}
- }
- },
- onLoad() {
- this.getUserInfo()
- },
- methods: {
- // 获取可提现金额
- getUserInfo(){
- this.request("/user/index",{},"POST").then(res=>{
- if(res.code === 1){
- this.info = res.data
- }
- })
- },
- // 点击充值
- push(){
- if(this.money <1){
- this.$u.toast('提现金额不能为0')
- return false;
- }
- this.request("/user_money_controller/take_cash",{money:this.money},"POST").then(res=>{
- if(res.code === 1){
- this.$u.toast('提现成功')
- this.getUserInfo()
- this.money = 0
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- padding-top: 40rpx;
- }
- .card {
- background-color: #FFFFFF;
- width: 93%;
- margin: 0 auto;
- padding: 30rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-around;
- .money-num {
- width: 100%;
- text-align: center;
- font-weight: bold;
- font-size: 50rpx;
- }
- .money-text {
- color: #999;
- }
- .title {
- width: 100%;
- }
- .money-input {
- border-bottom: 1rpx #eee solid;
- width: 100%;
- padding: 20rpx;
- margin-bottom: 50rpx;
- .icon {
- width: 10%;
- }
- .input {
- width: 70%;
- }
- .all {
- width: 20%;
- text-align: center;
- color: #F6B301;
- }
- }
- }
- .bottom-btn {
- position: fixed;
- bottom: 0;
- width: 100vw;
- height: 10vh;
- background-color: #FFFFFF;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- .buttom-dom {
- height: 80rpx;
- width: 93%;
- background-color: #F6B301;
- color: #FFFFFF;
- text-align: center;
- line-height: 80rpx;
- color: #FFFFFF;
- border-radius: 80rpx;
- }
- }
- </style>
|