tabBar 底部导航栏

This commit is contained in:
shikong 2024-10-16 14:10:23 +08:00
parent f21c14f6d3
commit 4695f789d2
Signed by: Shikong
GPG Key ID: BD85FF18B373C341
8 changed files with 67 additions and 4 deletions

15
.idea/git_toolbox_prj.xml Normal file
View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitToolBoxProjectSettings">
<option name="commitMessageIssueKeyValidationOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
<option name="commitMessageValidationEnabledOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
</component>
</project>

View File

@ -50,7 +50,7 @@
"quickapp" : {},
/* */
"mp-weixin" : {
"appid" : "",
"appid" : "wxc0f09a4756ce00aa",
"setting" : {
"urlCheck" : false
},

View File

@ -3,15 +3,41 @@
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
"navigationBarTitleText": "首页"
}
},
{
"path" : "pages/my-info/my-info",
"style" :
{
"navigationBarTitleText" : "我的"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTextStyle": "white",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"navigationBarBackgroundColor": "#1296db",
"backgroundColor": "#F8F8F8"
},
"tabBar": {
"selectedColor": "#1296db",
"list": [
{
"iconPath": "static/icon/Home.png",
"selectedIconPath": "static/icon/Home-select.png",
"pagePath": "pages/index/index",
"text": "首页"
},
{
"iconPath": "static/icon/My.png",
"selectedIconPath": "static/icon/My-select.png",
"pagePath": "pages/my-info/my-info",
"text": "我的"
}
],
"color": "",
"backgroundColor": ""
},
"uniIdRouter": {}
}

22
pages/my-info/my-info.vue Normal file
View File

@ -0,0 +1,22 @@
<template>
<view>
页面内容
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>

BIN
static/icon/Home-select.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 B

BIN
static/icon/Home.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 986 B

BIN
static/icon/My-select.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
static/icon/My.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB