12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- {
- "pages": [
- {
- "path" : "pages/home/home",
- "style" :
- {
- // "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/cate/cate",
- "style" :
- {
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/cart/cart",
- "style" :
- {
- "enablePullDownRefresh": false
- }
-
- }
- ,{
- "path" : "pages/my/my",
- "style" :
- {
- "enablePullDownRefresh": false
- }
-
- }
- ],
- "subPackages": [
- {
- "root": "subpkg",
- "pages": [
- {
- "path" : "subpkg/goods_detail/goods_detail",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- },
- {
- "path" : "subpkg/goods_list/goods_list",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
-
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "黑马优购",
- "navigationBarBackgroundColor": "#C00000",
- "backgroundColor": "#FFFFFF"
- },
- "tabBar": {
- "selectedColor": "#C00000",
- "list": [
- {
- "pagePath": "pages/home/home",
- "text": "首页",
- "iconPath": "static/tab_icons/home.png",
- "selectedIconPath": "static/tab_icons/home-active.png"
- },
- {
- "pagePath": "pages/cate/cate",
- "text": "分类",
- "iconPath": "static/tab_icons/cate.png",
- "selectedIconPath": "static/tab_icons/cate-active.png"
- },
- {
- "pagePath": "pages/cart/cart",
- "text": "购物车",
- "iconPath": "static/tab_icons/cart.png",
- "selectedIconPath": "static/tab_icons/cart-active.png"
- },
- {
- "pagePath": "pages/my/my",
- "text": "我的",
- "iconPath": "static/tab_icons/my.png",
- "selectedIconPath": "static/tab_icons/my-active.png"
- }
- ]
- }
- }
|