| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/video/index",
- "style": {
- "navigationBarTitleText": "视屏"
- }
- },
- {
- "path": "pages/order/index",
- "style": {
- "navigationBarTitleText": "我的订单"
- }
- },
- {
- "path": "pages/my/index",
- "style": {
- "navigationBarTitleText": "个人中心"
- }
- }
- ],
- "subPackages": [
- {
- "root": "orderPages",
- "pages": [
- {
- "path": "orderDetail/index",
- "style": {
- "navigationBarTitleText": "订单详情",
- "enablePullDownRefresh": false
- }
- }
- ]
- }
- ],
- "tabBar": {
- "color": "#282828",
- "selectedColor": "#B22338",
- "borderStyle": "white",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/index/index",
- "iconPath": "static/imageIcon/1-001.png",
- "selectedIconPath": "static/imageIcon/1-002.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/order/index",
- "iconPath": "static/imageIcon/2-001.png",
- "selectedIconPath": "static/imageIcon/2-002.png",
- "text": "订单"
- },
- {
- "pagePath": "pages/video/index",
- "iconPath": "static/imageIcon/3-001.png",
- "selectedIconPath": "static/imageIcon/3-002.png",
- "text": "视屏",
- "enablePullDownRefresh": false
- },
- {
- "pagePath": "pages/my/index",
- "iconPath": "static/imageIcon/4-001.png",
- "selectedIconPath": "static/imageIcon/4-002.png",
- "text": "我的"
- }
- ]
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "加载中",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#F8F8F8",
- "titleNView": false
- },
- "uniIdRouter": {}
- }
|