123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "pages": [{
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- } ,{
- "path" : "pages/mine/mine",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/shoppingMall/shoppingMall",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/knapsack/knapsack",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "app-plus": {
- "background": "#efeff4"
- }
- },
- "tabBar": {
- "color": "#B4C9DA",
- "selectedColor": "#FBB434",
- "height": "220px",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/img/tabBar1.png",
- "selectedIconPath": "static/img/tabBar1_s.png",
- "text": "首页"
- }
- , {
- "pagePath": "pages/shoppingMall/shoppingMall",
- "iconPath": "static/img/tabBar2.png",
- "selectedIconPath": "static/img/tabBar2_s.png",
- "text": "商城"
- }
- , {
- "pagePath": "pages/knapsack/knapsack",
- "iconPath": "static/img/tabBar3.png",
- "selectedIconPath": "static/img/tabBar3_s.png",
- "text": "背包"
- }, {
- "pagePath": "pages/mine/mine",
- "iconPath": "static/img/tabBar4.png",
- "selectedIconPath": "static/img/tabBar4_s.png",
- "text": "我的"
- }]
- }
- }
|