|
@@ -1,13 +1,6 @@
|
|
|
{
|
|
|
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
|
|
|
- {
|
|
|
- "path": "pages/index/index",
|
|
|
- "style": {
|
|
|
- "navigationBarTitleText": "uni-app"
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- ,{
|
|
|
+ {
|
|
|
//主页
|
|
|
"path" : "pages/car/index",
|
|
|
"style" :
|
|
@@ -16,7 +9,15 @@
|
|
|
"enablePullDownRefresh": false
|
|
|
}
|
|
|
|
|
|
- }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ "path": "pages/index/index",
|
|
|
+ "style": {
|
|
|
+ "navigationBarTitleText": "uni-app"
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
,{
|
|
|
//注册/登录
|
|
|
"path" : "pages/car/login",
|
|
@@ -234,5 +235,27 @@
|
|
|
],
|
|
|
"globalStyle": {
|
|
|
"navigationStyle": "custom"
|
|
|
+ },
|
|
|
+ "tabBar": {
|
|
|
+ "color": "#7A7E83",
|
|
|
+ "selectedColor": "#3cc51f",
|
|
|
+ "borderStyle": "black",
|
|
|
+ "backgroundColor": "#ffffff",
|
|
|
+ "list": [{
|
|
|
+ "pagePath": "pages/car/index",
|
|
|
+ "iconPath": "static/image/icon_component.png",
|
|
|
+ "selectedIconPath": "static/image/icon_component_HL.png",
|
|
|
+ "text": "主页"
|
|
|
+ }, {
|
|
|
+ "pagePath": "pages/news/index",
|
|
|
+ "iconPath": "static/image/icon_API.png",
|
|
|
+ "selectedIconPath": "static/image/icon_API_HL.png",
|
|
|
+ "text": "消息"
|
|
|
+ }, {
|
|
|
+ "pagePath": "pages/my/index",
|
|
|
+ "iconPath": "static/image/icon_API.png",
|
|
|
+ "selectedIconPath": "static/image/icon_API_HL.png",
|
|
|
+ "text": "我的"
|
|
|
+ }]
|
|
|
}
|
|
|
}
|