2025-11-11 10:35:43 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<view class="content">
|
|
|
|
|
|
<TopSafe bgColor="rgba(0,0,0,0)"></TopSafe>
|
|
|
|
|
|
<Header bgColor="rgba(0,0,0,0)" />
|
|
|
|
|
|
<view class="setting-view">
|
|
|
|
|
|
<u-icon size="54" name="checkmark-circle-fill" style="margin-top:84rpx" color="#7934F6" ></u-icon>
|
|
|
|
|
|
<text class="text-zu text-32 mt-24">兑换成功 {{money || 0}}TBC</text>
|
|
|
|
|
|
<text class="text-fu1 text-28 mt-24" style="text-align: center;">由于第三方结算原因,兑换成功后可能存在一定延迟请关注兑换账户变动情况~</text>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<view class="bottom-btn">
|
|
|
|
|
|
<MyBtn text="好的我知道了" @ok="onAdd"></MyBtn>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
<up-toast ref="uToastRef"></up-toast>
|
|
|
|
|
|
</view>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import { bindWithdraw } from '@/api/common.js';
|
|
|
|
|
|
import Header from '@/components/common/header.vue';
|
|
|
|
|
|
import { clear } from '@/utils/auth.js';
|
|
|
|
|
|
import TopSafe from '@/components/common/top-safe.nvue'
|
|
|
|
|
|
import MyBtn from '@/components/common/my-btn.vue'
|
|
|
|
|
|
import func from '@/utils/func.js';
|
|
|
|
|
|
import AccountItem from './components/account-item.vue'
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
components: { Header, TopSafe,MyBtn,AccountItem },
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
money:''
|
|
|
|
|
|
};
|
|
|
|
|
|
},
|
|
|
|
|
|
onLoad(option) {
|
|
|
|
|
|
if(option && option.money){
|
|
|
|
|
|
this.money = Number(option.money);
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
onAdd(){
|
2025-11-11 20:16:15 +08:00
|
|
|
|
uni.navigateBack()
|
2025-11-11 10:35:43 +08:00
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
.bottom-btn{
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
margin-bottom:92rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
padding: 0 32rpx;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
.setting-view {
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
height: calc(100% - 88rpx - 92rpx - 88rpx - var(--status-bar-height));
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
padding: 0 32rpx;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
.mid-view{
|
|
|
|
|
|
width:100%;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
|
border-radius: 16rpx;
|
|
|
|
|
|
padding: 48rpx 32rpx;
|
|
|
|
|
|
margin-top:24rpx;
|
|
|
|
|
|
.input-view{
|
|
|
|
|
|
width:100%;
|
|
|
|
|
|
height:100rpx;
|
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
|
border-radius: 20rpx;
|
|
|
|
|
|
margin-top:32rpx;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|