| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
- "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
- "^u-(.*)": "uview-plus/components/u-$1/u-$1.vue"
- }
- },
- "pages": [
- {
- "path": "pages/index/index",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "首页"
- }
- },
- {
- "path": "pages/category/index",
- "style": {
- "navigationBarTitleText": "分类"
- }
- },
- {
- "path": "pages/cart/index",
- "style": {
- "navigationBarTitleText": "购物车"
- }
- },
- {
- "path": "pages/mine/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登录",
- "navigationStyle": "custom"
- }
- }
- ],
- "subPackages": [
- {
- "root": "subpackage/account",
- "name": "pkg-account",
- "pages": [
- {
- "path": "register",
- "style": {
- "navigationBarTitleText": "会员注册"
- }
- }
- ]
- },
- {
- "root": "subpackage/category",
- "name": "pkg-category",
- "pages": [
- {
- "path": "level1",
- "style": {
- "navigationBarTitleText": "分类商品"
- }
- },
- {
- "path": "goods-list",
- "style": {
- "navigationBarTitleText": "商品列表"
- }
- }
- ]
- },
- {
- "root": "subpackage/goods",
- "name": "pkg-goods",
- "pages": [
- {
- "path": "detail",
- "style": {
- "navigationBarTitleText": "商品详情"
- }
- },
- {
- "path": "reviews",
- "style": {
- "navigationBarTitleText": "全部评价"
- }
- }
- ]
- },
- {
- "root": "subpackage/search",
- "name": "pkg-search",
- "pages": [
- {
- "path": "index",
- "style": {
- "navigationBarTitleText": "搜索"
- }
- },
- {
- "path": "result",
- "style": {
- "navigationBarTitleText": "搜索结果"
- }
- }
- ]
- }
- ],
- "preloadRule": {
- "pages/index/index": {
- "network": "all",
- "packages": ["pkg-category", "pkg-goods", "pkg-search"]
- },
- "pages/category/index": {
- "network": "all",
- "packages": ["pkg-category", "pkg-goods"]
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "农资商城",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F5F5F5"
- },
- "tabBar": {
- "color": "#999999",
- "selectedColor": "#2E7D32",
- "borderStyle": "black",
- "backgroundColor": "#FFFFFF",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "首页",
- "iconPath": "static/tabbar/home.png",
- "selectedIconPath": "static/tabbar/home-active.png"
- },
- {
- "pagePath": "pages/category/index",
- "text": "分类",
- "iconPath": "static/tabbar/classify.png",
- "selectedIconPath": "static/tabbar/classify-active.png"
- },
- {
- "pagePath": "pages/cart/index",
- "text": "购物车",
- "iconPath": "static/tabbar/shopping.png",
- "selectedIconPath": "static/tabbar/shopping-active.png"
- },
- {
- "pagePath": "pages/mine/index",
- "text": "我的",
- "iconPath": "static/tabbar/mine.png",
- "selectedIconPath": "static/tabbar/mine-active.png"
- }
- ]
- },
- "uniIdRouter": {}
- }
|