123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "^cu-(.*)":"@/colorui/components/cu-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- }
- },
- {
- "path": "pages/commodity/index",
- "style": {
- }
- },
- {
- "path": "pages/shoppingCart/index",
- "style": {
- }
- },
- {
- "path": "pages/detail/index"
- },
- {
- "path": "pages/order/index"
- }
- ],
- "tabBar": {
- "custom":true,
- "list": [{
- "pagePath": "pages/index/index",
- "text": "首页"
- },
- {
- "pagePath": "pages/commodity/index",
- "text": "商品"
- },
- {
- "pagePath": "pages/shoppingCart/index",
- "text": "购物车"
- },
- {
- "pagePath": "pages/login/index",
- "text": "我的"
- }
- ]
- },
- "subPackages": [
- {
- "root": "loginPages",
- "pages": [
- {
- "path":"addressList/index"
- },
- {
- "path": "addaddress/index"
- },
- {
- "path": "evaluate/index"
- },
- {
- "path":"addEvalute/index"
- }
- ]
- },
- {
- "root": "detailPages",
- "pages": [
- {
- "path":"evaluate/index"
- }
- ]
- }
- ],
- "preloadRule":{
- "pages/index/index": {
- "network": "all",
- "packages": ["__APP__"]
- },
- "pages/login/index":{
- "network": "all","packages": [
- "loginPages"
- ]
- },
- "pages/detail/index":{
- "network": "all",
- "packages": ["detailPages"]
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "uni-app",
- "navigationStyle": "custom",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- }
- }
|