feat: 初始化

This commit is contained in:
George
2025-07-07 16:05:18 +08:00
commit c169958240
986 changed files with 132574 additions and 0 deletions

View File

@ -0,0 +1,40 @@
.container {
padding: 11px 18px;
.title {
display: flex;
justify-content: space-between;
align-items: center;
.rightTitle {
font-size: 16px;
font-weight: 400;
}
}
.content {
display: flex;
flex-direction: column;
align-items: center;
row-gap: 10px;
margin-top: 62px;
.successTitle {
font-size: 24px;
font-weight: 700;
color: #333333;
text-align: center;
}
.successDesc {
margin-top: 19px;
font-size: 12px;
color: #aaaaaa;
text-align: center;
}
}
.btns {
display: flex;
flex-direction: column;
row-gap: 12px;
margin-top: 120px;
.btn {
width: 100%;
}
}
}

View File

@ -0,0 +1,40 @@
<template>
<NavBar />
<view class="container">
<view class="title">
<PageTitle :title="$t('home.apply.title')" />
<text class="rightTitle">{{ $t('home.apply.salesWithdraw') }}</text>
</view>
<view class="content">
<image src="/static/success.png" mode="aspectFit" style="width: 56px; height: 56px"></image>
<text class="successTitle">{{ $t('withdrawal.success') }}</text>
<text class="successDesc">{{ $t('deposit.successDesc') }}</text>
</view>
<view class="btns">
<button class="btn primaryButton" type="button" :disabled="btnLoading" @click="handleContinueWithdraw">
<image v-show="btnLoading" src="/static/loadingCircle.svg" mode="aspectFit" style="width: 16px; height: 16px"></image>
{{ $t('withdrawal.continue') }}
</button>
</view>
</view>
</template>
<script>
export default {
name: '',
data() {
return {};
},
methods: {
handleContinueWithdraw() {
uni.redirectTo({
url: '/pages/capital/salesWithdraw/index'
});
}
}
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>