1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- {
- "pages": [
- "pages/login/login",
- "pages/register/register",
- "pages/home/home",
- "pages/my/my",
- "pages/shop/shop",
- "pages/type/type",
- "pages/detail/detail"
- ],
- "subPackages": [],
- "window": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FF0000",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#000000",
- "selectedColor": "#ff0000",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [
- {
- "pagePath": "pages/home/home",
- "iconPath": "static/home.png",
- "selectedIconPath": "static/home_active.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/type/type",
- "iconPath": "static/type.png",
- "selectedIconPath": "static/type_active.png",
- "text": "分类"
- },
- {
- "pagePath": "pages/shop/shop",
- "iconPath": "static/shop.png",
- "selectedIconPath": "static/shop_active.png",
- "text": "购物车"
- },
- {
- "pagePath": "pages/my/my",
- "iconPath": "static/my.png",
- "selectedIconPath": "static/my_active.png",
- "text": "我的"
- }
- ]
- },
- "usingComponents": {
- "van-button": "/wxcomponents/dist/button/index",
- "van-field": "/wxcomponents/dist/field/index",
- "van-toast": "/wxcomponents/dist/toast/index",
- "van-search": "/wxcomponents/dist/search/index",
- "van-grid": "/wxcomponents/dist/grid/index",
- "van-grid-item": "/wxcomponents/dist/grid-item/index",
- "van-notice-bar": "/wxcomponents/dist/notice-bar/index"
- }
- }
|