| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "enablePullDownRefresh": true,
- // #ifdef MP
- "navigationStyle": "custom",
- // #endif
- // #ifndef MP
- "app-plus": {
- "titleNView": false
- },
- // #endif
- "navigationBarTitleText": "星辰"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "加载中",
- "navigationBarBackgroundColor": "#fff",
- // "titleNView": false
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#999",
- "selectedColor": "#222",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/tabBar/tab-01.png",
- "selectedIconPath": "static/tabBar/tab-01-current.png",
- "text": "盲盒"
- },
- {
- "pagePath": "pages/goods_cate/goods_cate",
- "iconPath": "static/tabBar/tab-02.png",
- "selectedIconPath": "static/tabBar/tab-02-current.png",
- "text": "娱乐"
- },
- {
- "pagePath": "pages/store_cate/store_cate",
- "iconPath": "static/tabBar/tab-03.png",
- "selectedIconPath": "static/tabBar/tab-03-current.png",
- "text": "联盟"
- },
- {
- "pagePath": "pages/user/index",
- "iconPath": "static/tabBar/tab-04.png",
- "selectedIconPath": "static/tabBar/tab-04-current.png",
- "text": "我的"
- }
- ]
- }
- }
|