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.
224 lines
4.0 KiB
224 lines
4.0 KiB
<template> |
|
<view class="embody"> |
|
<image src="../../static/monneyhui.png" mode="" class="img1" @click="back"></image> |
|
<view class="erchange"> |
|
提现 |
|
</view> |
|
<view class="balace"> |
|
<view class="user"> |
|
账户余额 |
|
</view> |
|
<view class="money"> |
|
{{balace}} |
|
</view> |
|
</view> |
|
<view class="balace"> |
|
<view class="user"> |
|
<input type="number" placeholder="请输入卡号" style="width: 600rpx;" v-model.trim="card"> |
|
</view> |
|
</view> |
|
|
|
<view class="moneycontent"> |
|
<view class="item" :class="{active:status==1}" @click="setStatus(1,5.00)"> |
|
5 |
|
</view> |
|
<view class="item" :class="{active:status==2}" @click="setStatus(2,10.00)"> |
|
10 |
|
</view> |
|
<view class="item" :class="{active:status==3}" @click="setStatus(3,15.00)"> |
|
15 |
|
</view> |
|
<view class="item" :class="{active:status==4}" @click="setStatus(4,20.00)"> |
|
20 |
|
</view> |
|
<view class="item" :class="{active:status==5}" @click="setStatus(5,50.00)"> |
|
50 |
|
</view> |
|
<view class="item" :class="{active:status==6}" @click="setStatus(6,100.00)"> |
|
100 |
|
</view> |
|
</view> |
|
|
|
<view class="note"> |
|
注 |
|
</view> |
|
|
|
<view class="text"> |
|
<rich-text :nodes="node"></rich-text> |
|
</view> |
|
|
|
<view class="sure" @click="sureerchange"> |
|
确认提现 |
|
</view> |
|
|
|
</view> |
|
</template> |
|
|
|
<script> |
|
import { |
|
userinfo, |
|
userwithdraw, |
|
getbase |
|
} from '@/api/api.js' |
|
export default { |
|
data() { |
|
return { |
|
status: 1, |
|
price: 5.00, |
|
balace: 0., |
|
card:"", |
|
node:"" |
|
} |
|
}, |
|
methods: { |
|
setStatus(id, number) { |
|
this.status = id; |
|
this.price = number; |
|
}, |
|
back() { |
|
uni.navigateTo({ |
|
url:"../price/price" |
|
}) |
|
}, |
|
sureerchange() { |
|
|
|
uni.showToast({ |
|
duration:1500, |
|
title:"暂未开放", |
|
icon:'error' |
|
}) |
|
// userwithdraw({ |
|
// amount: this.price, |
|
// remark:this.card |
|
// }).then((res) => { |
|
// console.log(res); |
|
// if(res.code==200){ |
|
// uni.showToast({ |
|
// duration:1500, |
|
// title:`${res.msg}`, |
|
// icon:'success' |
|
// }) |
|
// }else if(res.code==202){ |
|
// uni.showToast({ |
|
// duration:1500, |
|
// title:`${res.msg}`, |
|
// icon:'error' |
|
// }) |
|
// } |
|
// }) |
|
|
|
} |
|
}, |
|
onShow() { |
|
// 用于查询账户余额 |
|
userinfo({}).then((res) => { |
|
this.balace = res.data.balance |
|
}); |
|
getbase({type:'withdrawNote'}).then((res)=>{ |
|
this.node=res.data.content |
|
}) |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style lang="scss" scoped> |
|
.embody { |
|
width: 700rpx; |
|
margin: 0px auto; |
|
padding-top: 100rpx; |
|
padding-bottom: 68rpx; |
|
|
|
.img1 { |
|
width: 38rpx; |
|
height: 38rpx; |
|
} |
|
|
|
.erchange { |
|
font-size: 48rpx; |
|
font-weight: bold; |
|
color: #FFFFFF; |
|
margin-top: 84rpx; |
|
} |
|
|
|
.balace { |
|
width: 700rpx; |
|
display: flex; |
|
border-bottom: 2rpx solid #373737; |
|
align-items: center; |
|
justify-content: space-between; |
|
padding: 40rpx 0rpx; |
|
|
|
.user { |
|
font-size: 28rpx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
} |
|
|
|
.money { |
|
font-size: 48rpx; |
|
font-weight: bold; |
|
color: #FFFFFF; |
|
} |
|
} |
|
|
|
|
|
.moneycontent { |
|
width: 700rpx; |
|
display: flex; |
|
flex-wrap: wrap; |
|
justify-content: space-between; |
|
margin-top: 64rpx; |
|
|
|
.item { |
|
width: 208rpx; |
|
height: 126rpx; |
|
background: #23262F; |
|
border-radius: 12rpx; |
|
margin-top: 28rpx; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
font-size: 32rpx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
} |
|
|
|
.active { |
|
background: #3772FF; |
|
} |
|
} |
|
|
|
.note { |
|
width: 700rpx; |
|
font-size: 32rpx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
margin-top: 150rpx; |
|
} |
|
|
|
.text { |
|
width: 700rpx; |
|
font-size: 24rpx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
line-height: 40rpx; |
|
margin-top: 20rpx; |
|
} |
|
|
|
.sure { |
|
width: 668rpx; |
|
height: 84rpx; |
|
background: #3772FF; |
|
border-radius: 12rpx; |
|
font-size: 28rpx; |
|
font-weight: 500; |
|
color: #FFFFFF; |
|
display: flex; |
|
justify-content: center; |
|
align-items: center; |
|
margin-top: 260rpx; |
|
} |
|
|
|
} |
|
</style>
|
|
|