Files
frontend-app/pages/rwa_package/account/index.vue
T

95 lines
2.1 KiB
Vue
Raw Normal View History

2025-09-26 14:06:04 +08:00
<template>
<view class="content">
<TopSafe bgColor="rgba(0,0,0,0)"></TopSafe>
2025-11-11 10:35:43 +08:00
<Header bgColor="rgba(0,0,0,0)" />
2025-09-26 14:06:04 +08:00
<view class="setting-view">
2025-11-11 10:35:43 +08:00
<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}}</text>
<text class="text-fu1 text-28 mt-24" style="text-align: center;">由于第三方结算原因,提现成功后可能存在一定延迟请关注提现账户变动情况~</text>
2025-09-26 14:06:04 +08:00
</view>
<view class="bottom-btn">
2025-11-11 10:35:43 +08:00
<MyBtn text="好的我知道了" @ok="onAdd"></MyBtn>
2025-09-26 14:06:04 +08:00
</view>
<up-toast ref="uToastRef"></up-toast>
</view>
</template>
<script>
2025-11-11 10:35:43 +08:00
import { bindWithdraw } from '@/api/common.js';
2025-09-26 14:06:04 +08:00
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';
2025-10-10 13:41:42 +08:00
import AccountItem from './components/account-item.vue'
2025-09-26 14:06:04 +08:00
export default {
2025-10-10 13:41:42 +08:00
components: { Header, TopSafe,MyBtn,AccountItem },
2025-09-26 14:06:04 +08:00
data() {
return {
2025-11-11 10:35:43 +08:00
money:''
2025-09-26 14:06:04 +08:00
};
},
2025-11-11 10:35:43 +08:00
onLoad(option) {
if(option && option.money){
this.money = Number(option.money);
2025-10-18 15:46:32 +08:00
}
},
2025-09-26 14:06:04 +08:00
methods: {
2025-11-11 10:35:43 +08:00
onAdd(){
uni.navigateBack()
2025-09-26 14:06:04 +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;
2025-10-10 13:41:42 +08:00
.mid-view{
2025-09-26 14:06:04 +08:00
width:100%;
display: flex;
flex-direction: column;
2025-10-10 13:41:42 +08:00
overflow-y: auto;
2025-09-26 14:06:04 +08:00
box-sizing: border-box;
2025-11-11 10:35:43 +08:00
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;
2025-09-26 14:06:04 +08:00
display: flex;
2025-11-11 10:35:43 +08:00
flex-direction: row;
2025-09-26 14:06:04 +08:00
align-items: center;
2025-11-11 10:35:43 +08:00
2025-09-26 14:06:04 +08:00
}
}
2025-11-11 10:35:43 +08:00
2025-09-26 14:06:04 +08:00
}
</style>