123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
- "^gf-(.*)": "@/components/kj-$1/kj-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "uni-app"
- }
- },
- {
- "path": "pages/mine/mine",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/express/express",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/shopping/shopping",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- },
- {
- "path": "pages/cart/cart",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ],
- "subPackages": [{
- "root": "pageA",
- "pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ]
- },
- {
- "root": "pageB",
- "pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ]
- },
- {
- "root": "pageC",
- "pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ]
- },
- {
- "root": "pageD",
- "pages": [{
- "path": "index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#fff",
- "backgroundColor": "#222"
- },
- "uniIdRouter": {},
- "tabBar": {
- "color": "#333333",
- "selectedColor": "#F83224",
- "list": [{
- "iconPath": "static/express1.png",
- "selectedIconPath": "static/express1.png",
- "text": "跨境速递",
- "pagePath": "pages/express/express"
- },
- {
- "iconPath": "static/index1.png",
- "selectedIconPath": "static/index2.png",
- "text": "商城",
- "pagePath": "pages/index/index"
- },
- {
- "iconPath": "static/index1.png",
- "selectedIconPath": "static/index2.png",
- "text": "购",
- "pagePath": "pages/shopping/shopping"
- },
- {
- "iconPath": "static/cart1.png",
- "selectedIconPath": "static/cart2.png",
- "text": "购物车",
- "pagePath": "pages/cart/cart"
- },
- {
- "iconPath": "static/mine1.png",
- "selectedIconPath": "static/mine2.png",
- "text": "我的",
- "pagePath": "pages/mine/mine"
- }
- ]
- }
- }
|