feat: 初始化

This commit is contained in:
George
2025-07-07 15:55:44 +08:00
commit 9b7bfcfe5a
969 changed files with 123036 additions and 0 deletions

View File

@ -0,0 +1,34 @@
.container {
padding: 0 24px 24px 16px;
.title {
margin: 14px 0 15px;
}
.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,46 @@
<template>
<NavBar />
<view class="container">
<view class="title">
<PageTitle :title="$t('home.transfer')" />
</view>
<view class="content">
<image src="/static/success.png" mode="aspectFit" style="width: 56px; height: 56px"></image>
<text class="successTitle">{{ $t('mtTransfer.success') }}</text>
<text class="successDesc">{{ $t('deposit.successDesc') }}</text>
</view>
<view class="btns">
<button class="btn primaryButton" type="button" @click="handleContinueTransfer">
{{ $t('mtTransfer.continue') }}
</button>
<button class="btn secondaryButton" type="button" @click="handleClose">
{{ $t('form.close') }}
</button>
</view>
</view>
</template>
<script>
export default {
name: '',
data() {
return {};
},
methods: {
handleClose() {
uni.redirectTo({
url: '/pages/home/index'
});
},
handleContinueTransfer() {
uni.redirectTo({
url: '/pages/capital/transfer/index'
});
}
}
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>