数字艺术
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.
 
 
 
 

202 lines
3.5 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="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,
userrecharge,
getbase
} from '@/api/api.js'
export default {
data() {
return {
status: 1,
price: 5.00,
balace: 0,
node:'',
host:"http://nft.cstheone.com",
}
},
methods: {
setStatus(id, number) {
this.status = id;
this.price = number;
},
back() {
uni.navigateTo({
url:"../price/price"
})
},
sureerchange() {
userrecharge({
amount: this.price,
successCallback: `${this.host}/#/pages/ersuccess/ersuccess`,
failCallback: `${this.host}/#/pages/erchange/erchange`
}).then((res) => {
window.location.href=`${res.data.pay_url}`
})
}
},
onShow() {
userinfo({}).then((res) => {
this.balace = res.data.balance
});
getbase({type:'rechargeNote'}).then((res)=>{
console.log(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>