| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- {
- "easycom": {
- "autoscan": true, //是否自动扫描组件
- "custom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- }
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- // {
- // "path": "pages/index/index",
- // "style": {
- // "navigationBarTitleText": "uni-app"
- // }
- // },
- {
- "path": "pages/worktable/index",
- "style": {
- "enablePullDownRefresh": false, //禁止下拉刷新
- "navigationStyle": "custom" //设置不显示原生导航栏
- }
- },
- {
- "path": "pages/management/index",
- "style": {
- "enablePullDownRefresh": false, //禁止下拉刷新
- "navigationStyle": "custom" //设置不显示原生导航栏
- }
- }
- ],
- //分包模块
- "subPackages": [{
- "root": "pagesA",
- "pages": [{
- "path": "member/index",
- "style": {
- "navigationBarTitleText": "会员管理"
- }
- }, {
- "path": "strikeBalance/index",
- "style": {
- "navigationBarTitleText": "冲账管理"
- }
- }, {
- "path": "commodity/index",
- "style": {
- "navigationBarTitleText": "商品分类"
- }
- }, {
- "path": "goodsInfo/index",
- "style": {
- "navigationBarTitleText": "商品管理"
- }
- }, {
- "path": "clerk/index",
- "style": {
- "navigationBarTitleText": "店员管理"
- }
- }, {
- "path": "shop/index",
- "style": {
- "navigationBarTitleText": "店铺管理"
- }
- }, {
- "path": "destroy/index",
- "style": {
- "navigationBarTitleText": "核销管理"
- }
- }]
- }],
- //分包预加载
- "preloadRule": {
- "pages/worktable/index": { //要进行预加载时用户要进入的页面路径
- "network": "all", // 什么网络下支持允许预加载,默认wifi: wifi/all
- "packages": ["pagesA"] // 要进行预加载的子包名
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "color": "#979594",
- "selectedColor": "#F57737", //tab 上的文字选中时的颜色
- "borderStyle": "black", //tabbar 上边框的颜色
- "backgroundColor": "#ffffff",
- "height": "120rpx",
- "fontSize": "24rpx",
- "iconWidth": "20px", //图标默认宽度(高度等比例缩放)
- "spacing": "14rpx", //图标和文字的间距
- "list": [{
- "pagePath": "pages/worktable/index", //页面路径,必须在 pages 中先定义
- "iconPath": "static/images/tab_home_nor@2x.png", //图片路径,icon 大小限制为40kb,建议尺寸为 81px * 81px,当 position 为 top 时,此参数无效,不支持网络图片,不支持字体图标
- "selectedIconPath": "static/images/tab_home_sel@2x.png", //选中时的图片路径,icon 大小限制为40kb,建议尺寸为 81px * 81px ,当 position 为 top 时,此参数无效
- "text": "工作台"
- }, {
- "pagePath": "pages/management/index",
- "iconPath": "static/images/tab_gl_nor@2x.png",
- "selectedIconPath": "static/images/tab_gl_sel@2x.png",
- "text": "管理"
- }]
- },
- "uniIdRouter": {}
- }
|