123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- {
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path" : "pages/login/JudeLoginPage",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle" : "custom"
- }
- },
- {
- "path": "pages/home/home",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": true,
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": true,
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path" : "pages/myCenter/myCenter",
- "style" :
- {
- "navigationStyle": "custom",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/newsCenter/newsIndex",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": true,
- "navigationBarTextStyle": "white"
- }
- },
- {
- "path": "pages/typeList/typeList",
- "style": {
- "navigationStyle": "custom",
- "enablePullDownRefresh": true,
- "navigationBarTextStyle": "white"
- }
- }
- ,{
- "path" : "pages/myCenter/setting",
- "style" :
- {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "enablePullDownRefresh": false
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "爱养牛",
- "navigationBarBackgroundColor": "#f6f6f6",
- "backgroundColor": "#f6f6f6",
- "backgroundColorTop":"#FFFFFF"
- },
- "uniIdRouter": {
- "loginPage": "pages/login/login"
- },
- "tabBar": {
- "color": "#45474a",
- "selectedColor": "#00aaff",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/home/home",
- "iconPath": "static/tabBar/shouye.png",
- "selectedIconPath": "static/tabBar/tabbar/shouye.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/typeList/typeList",
- "iconPath": "static/tabBar/fenlei_1.png",
- "selectedIconPath": "static/tabBar/tabbar/fenlei_1.png",
- "text": "分类"
- },
- // {
- // "pagePath": "pages/newsCenter/newsIndex",
- // "iconPath": "static/tabBar/xiaoxi.png",
- // "selectedIconPath": "static/tabBar/sel-xiaoxi.png",
- // "text": "牛人慧"
- // },
- {
- "pagePath": "pages/newsCenter/newsIndex",
- "iconPath": "static/tabBar/gouwuche.png",
- "selectedIconPath": "static/tabBar/tabbar/gouwuche.png",
- "text": "购物车"
- },
- {
- "pagePath": "pages/myCenter/myCenter",
- "iconPath": "static/tabBar/wode.png",
- "selectedIconPath": "static/tabBar/tabbar/wode.png",
- "text": "我的"
- }]
- }
- }
|