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,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,41 @@
<template>
<NavBar />
<view class="container">
<view class="title">
<PageTitle :title="$t('leverageAdjustment.pageTitle')" />
</view>
<view class="content">
<image src="/static/warning.png" mode="aspectFit" style="width: 56px; height: 56px"></image>
<text class="successTitle">{{ $t('leverageAdjustment.error') }}</text>
<text class="successDesc">{{ msg }}</text>
</view>
<view class="btns">
<button class="btn primaryButton" type="button" @click="back">
{{ $t('common.back') }}
</button>
</view>
</view>
</template>
<script>
export default {
name: '',
data() {
return {
msg: ''
};
},
methods: {
back() {
uni.navigateBack();
}
},
onLoad(params) {
this.msg = params.msg;
}
};
</script>
<style lang="scss" scoped>
@import './index.scss';
</style>