123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- {
- "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": "首页"
- }
- },
- {
- "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": "首页"
- },
- {
- "pagePath": "pages/tabbar/order/index",
- "text": "订单"
- },
- {
- "pagePath": "pages/tabbar/user/index",
- "text": "我的"
- }
- ]
- },
- "uniIdRouter": {}
- }
|