fix
This commit is contained in:
parent
018ad823ba
commit
5c84e6b3b8
@ -9,6 +9,21 @@
|
||||
}
|
||||
},
|
||||
"pages": [ //pages数组中第一项表示应用启动页,参考:https://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",
|
||||
"style": {
|
||||
|
27
src/pages/start/index.vue
Normal file
27
src/pages/start/index.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user