This commit is contained in:
Aiden 2024-10-25 15:39:35 +08:00
parent 018ad823ba
commit 5c84e6b3b8
2 changed files with 42 additions and 0 deletions

View File

@ -9,6 +9,21 @@
} }
}, },
"pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages "pages": [ //pageshttps://uniapp.dcloud.io/collocation/pages
{
"path": "pages/start/index",
"style": {
"navigationBarTitleText": "",
"enablePullDownRefresh": false
},
"app-plus": {
"splashscreen": {
"alwaysShowBeforeRender": false,
"waiting": false,
"autoclose": false,
"delay": 0
}
}
},
{ {
"path": "pages/login/index", "path": "pages/login/index",
"style": { "style": {

27
src/pages/start/index.vue Normal file
View File

@ -0,0 +1,27 @@
<template>
<div class="box">
<div style="color: #e3af1c; font-size: 40rpx">验证成功欢迎来到</div>
<div style="font-weight: bold; font-size: 64rpx">仓库管理</div>
</div>
</template>
<script setup></script>
<style lang="scss" scoped>
page {
background: url("@/static/bgp.png") no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
box-sizing: border-box;
}
.box {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
width: 100%;
height: 100%;
gap: 14rpx;
}
</style>