| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
- }
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/tabbar/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登陆",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/order/index",
- "style": {
- "navigationBarTitleText": "订单"
- }
- },
- {
- "path": "pages/tabbar/user/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "borderStyle": "white",
- "backgroundColor": "white",
- "color": "#000",
- "selectedColor": "#ef530e",
- "list": [
- {
- "pagePath": "pages/tabbar/index/index",
- "text": "首页",
- "iconPath": "static/image/tab-icon/home.png",
- "selectedIconPath": "static/image/tab-icon/home-active.png"
- },
- {
- "pagePath": "pages/tabbar/order/index",
- "text": "订单",
- "iconPath": "static/image/tab-icon/order.png",
- "selectedIconPath": "static/image/tab-icon/order-active.png"
- },
- {
- "pagePath": "pages/tabbar/user/index",
- "text": "我的",
- "iconPath": "static/image/tab-icon/user.png",
- "selectedIconPath": "static/image/tab-icon/user-active.png"
- }
- ]
- },
- "uniIdRouter": {}
- }
|