| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- {
- "easycom": {
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- // "condition": { //模式配置,仅开发期间生效
- // "current": 0, //当前激活的模式(list 的索引项)
- // "list": [{
- // "name": "test", //模式名称
- // "path": "pages/componentsC/test/index", //启动页面,必选
- // "query": "uuid=c4bba940-f69e-11ea-a419-6bafda9d095e&__id__=1" //启动参数,在页面的onLoad函数里面得到
- // }]
- // },
- "pages": [
- // 演示-组件
- {
- "path": "pages/Home",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTextStyle": "white",
- "backgroundColor": "#F2F3F5"
- }
- },
- // 演示-组件
- {
- "path": "pages/example/components",
- "style": {
- "navigationBarTitleText": "组件"
- }
- },
- // avatarCropper-头像裁剪
- {
- "path": "uview-ui/components/u-avatar-cropper/u-avatar-cropper",
- "style": {
- "navigationBarTitleText": "头像裁剪",
- "navigationBarBackgroundColor": "#000000"
- }
- },
- // 演示-工具
- {
- "path": "pages/example/js",
- "style": {
- "navigationBarTitleText": "工具"
- }
- },
- // 演示-模板
- {
- "path": "pages/example/template",
- "style": {
- "navigationBarTitleText": "模板"
- }
- },
- // fullScreen-压窗屏
- {
- "path": "uview-ui/components/u-full-screen/u-full-screen",
- "style": {
- "navigationStyle": "custom",
- "app-plus": {
- "animationType": "fade-in",
- "background": "transparent",
- "backgroundColor": "rgba(0,0,0,0)",
- "popGesture": "none"
- }
- }
- }, {
- "path": "pages/Orders",
- "style": {
- "navigationBarTitleText": "订单管理",
- "enablePullDownRefresh": false
- }
- }
- ],
- "preloadRule": {
- "pages/example/components": {
- "network": "all",
- "packages": ["pages/componentsA", "pages/componentsB", "pages/componentsC"]
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "校园外卖",
- "navigationBarBackgroundColor": "#214BBE",
- "backgroundColor": "#F2F3F5"
- },
- "tabBar": {
- "color": "#808080",
- "selectedColor": "#1A1A1A",
- "backgroundColor": "#FFFFFF",
- "borderStyle": "black",
- "list": [{
- "pagePath": "pages/Home",
- "iconPath": "static/uview/imgs/tabbar_icon_01.png",
- "selectedIconPath": "static/uview/imgs/tabbar_icon_01_pre.png",
- "text": "首页"
- },
- {
- "pagePath": "pages/Orders",
- "iconPath": "static/uview/imgs/tabbar_icon_02.png",
- "selectedIconPath": "static/uview/imgs/tabbar_icon_02_pre.png",
- "text": "订单管理"
- },
- {
- "pagePath": "pages/example/template",
- "iconPath": "static/uview/imgs/tabbar_icon_03.png",
- "selectedIconPath": "static/uview/imgs/tabbar_icon_03_pre.png",
- "text": "我的"
- }
- ]
- }
- }
|