wujingjing
2024-08-01 1ee0bcc741206079b645c584c578ee543ff75c35
miniprogram/app.json
@@ -1,11 +1,12 @@
{
  "pages": [
    "pages/index/index",
    "pages/question/question",
    "pages/category/category",
    "pages/cart/cart",
    "pages/my/my",
    "pages/login/login",
    "pages/test/test"
    "pages/test/test",
    "pages/scene/scene"
  ],
  "window": {
    "backgroundTextStyle": "light",
@@ -14,34 +15,19 @@
    "navigationBarTextStyle": "white"
  },
  "tabBar": {
    "color": "#252933",
    "selectedColor": "#FF734C",
    "backgroundColor": "#ffffff",
    "borderStyle": "black",
    "custom": true,
    "list": [
      {
        "pagePath": "pages/index/index",
        "text": "首页",
        "iconPath": "assets/tabbar/index.png",
        "selectedIconPath": "assets/tabbar/index-active.png"
        "pagePath": "pages/question/question",
        "text": "问答"
      },
      {
        "pagePath": "pages/category/category",
        "text": "分类",
        "iconPath": "assets/tabbar/cate.png",
        "selectedIconPath": "assets/tabbar/cate-active.png"
      },
      {
        "pagePath": "pages/cart/cart",
        "text": "购物车",
        "iconPath": "assets/tabbar/cart.png",
        "selectedIconPath": "assets/tabbar/cart-active.png"
        "pagePath": "pages/scene/scene",
        "text": "场景"
      },
      {
        "pagePath": "pages/my/my",
        "text": "我的",
        "iconPath": "assets/tabbar/my.png",
        "selectedIconPath": "assets/tabbar/my-active.png"
        "text": "我的"
      }
    ]
  },
@@ -62,7 +48,8 @@
    "van-datetime-picker": "@vant/weapp/datetime-picker/index",
    "van-goods-action": "@vant/weapp/goods-action/index",
    "van-goods-action-icon": "@vant/weapp/goods-action-icon/index",
    "van-goods-action-button": "@vant/weapp/goods-action-button/index"
    "van-goods-action-button": "@vant/weapp/goods-action-button/index",
    "fui-drawer": "./libs/firstui/fui-drawer/fui-drawer"
  },
  "sitemapLocation": "sitemap.json",
  "subPackages": [
@@ -79,33 +66,45 @@
    {
      "root": "modules/goodModule",
      "name": "goodModule",
      "pages": ["pages/goods/list/list", "pages/goods/detail/detail"]
      "pages": [
        "pages/goods/list/list",
        "pages/goods/detail/detail"
      ]
    },
    {
      "root": "modules/orderPayModule",
      "name": "orderPayModule",
      "pages": ["pages/order/detail/detail", "pages/order/list/list"]
      "pages": [
        "pages/order/detail/detail",
        "pages/order/list/list"
      ]
    }
  ],
  "preloadRule": {
    "pages/my/my": {
      "network": "all",
      "packages": ["settingModule"]
    },
    "modules/orderPayModule/pages/order/detail/detail": {
      "network": "all",
      "packages": ["settingModule"]
      "packages": [
        "settingModule"
      ]
    },
    "pages/category/category": {
      "network": "all",
      "packages": ["goodModule"]
      "packages": [
        "goodModule"
      ]
    },
    "pages/cart/cart": {
      "network": "all",
      "packages": ["orderPayModule"]
      "packages": [
        "orderPayModule"
      ]
    }
  },
  "requiredPrivateInfos": ["getLocation", "chooseLocation"],
  "requiredPrivateInfos": [
    "getLocation",
    "chooseLocation"
  ],
  "permission": {
    "scope.userLocation": {
      "desc": "获取地理位置信息用于填写收货地址"
@@ -115,4 +114,4 @@
    "@/*": "/*"
  },
  "lazyCodeLoading": "requiredComponents"
}
}