feat-新增页面

This commit is contained in:
Huang 2022-06-14 17:54:25 +08:00
parent cac2628eae
commit 38b964f5cc
4 changed files with 49 additions and 1 deletions

View File

@ -4,7 +4,19 @@
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
"navigationBarTitleText": "首页"
}
},
{
"path": "pages/demo/index",
"style": {
"navigationBarTitleText": "Demo"
}
},
{
"path": "pages/about/index",
"style": {
"navigationBarTitleText": "关于"
}
},
{
@ -31,5 +43,20 @@
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"color": "#222",
"selectedColor": "#000",
"backgroundColor": "#FFF",
"list": [{
"pagePath": "pages/index/index",
"text": "首页"
},{
"pagePath": "pages/demo/index",
"text": "Demo"
},{
"pagePath": "pages/about/index",
"text": "关于"
}]
}
}

View File

@ -0,0 +1,7 @@
<template>
<view> 页面模板 </view>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped></style>

7
src/pages/demo/index.vue Normal file
View File

@ -0,0 +1,7 @@
<template>
<view> 页面模板,新建pages,将此页面内容复制粘贴到新建.vue文件 </view>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped></style>

View File

@ -0,0 +1,7 @@
<template>
<view> 页面模板,新建pages,将此页面内容复制粘贴到新建.vue文件 </view>
</template>
<script lang="ts" setup></script>
<style lang="scss" scoped></style>