123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
- }
- },
- "pages": [
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "团蜂名片",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/user/user",
- "style": {
- "navigationBarTitleText": "我的",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/login/login",
- "style": {
- "navigationBarTitleText": "登录"
- }
- },
- {
- "path": "pages/login/register",
- "style": {
- "navigationBarTitleText": "注册"
- }
- },
- {
- "path": "pages/service-agreement/service-agreement",
- "style": {
- "navigationBarTitleText": "团蜂服务协议"
- }
- },
- {
- "path": "pages/service-agreement/privacy-policy",
- "style": {
- "navigationBarTitleText": "团蜂隐私协议"
- }
- }
- ],
- "subPackages": [
- {
- "root": "another-tf",
- "pages": [
- {
- "path": "another-user/calling-card/agree",
- "style": {
- "navigationBarTitleText": "用户协议"
- }
- },
- {
- "path": "another-user/calling-card/card-sharing",
- "style": {
- "navigationBarTitleText": "名片分享"
- // 对于APP,单独设置uniapp自带的头部导航栏,则有头部导航栏,否则没有;当然也可以不设置,而使用页面头部栏。
- // "app-plus": {
- // // #ifdef APP
- // "titleNView": {
- // "type": "default"
- // }
- // // #endif
- // }
- // 相当于全局设置的。对于小程序,如果设置导航栏自定义,则没有了小程序自身的头部导航栏,否则依然存在。
- // "navigationStyle": "custom",
- // 相当于全局设置的。
- // "app-plus": {
- // "titleNView": false
- // } //去掉
- }
- },
- {
- "path": "another-user/calling-card-management/calling-card-form",
- "style": {
- "navigationBarTitleText": "名片表单"
- }
- },
- {
- "path": "another-user/calling-card-management/label-list",
- "style": {
- "navigationBarTitleText": "名片标签列表"
- }
- },
- {
- "path": "another-user/calling-card-management/card-label-form",
- "style": {
- "navigationBarTitleText": "名片标签表单"
- }
- }
- ]
- }
- ],
- "tabBar": {
- "selectedColor": "#E95D20",
- "backgroundColor": "#fff",
- "color": "#3D3D3D",
- "borderStyle": "white",
- "iconWidth": "28px",
- "height": "60px",
- "list": [
- {
- "pagePath": "pages/index/index",
- "text": "名片",
- "iconPath": "/static/images/tabbar/furniture.png",
- "selectedIconPath": "/static/images/tabbar/furniture-active.png"
- },
- {
- "pagePath": "pages/user/user",
- "text": "我的",
- "iconPath": "/static/images/tabbar/mine.png",
- "selectedIconPath": "/static/images/tabbar/mine-active.png"
- }
- ]
- },
- "globalStyle": {
- "backgroundTextStyle": "light",
- "navigationBarBackgroundColor": "#FFFFFF",
- "navigationBarTitleText": "uni-card",
- "navigationBarTextStyle": "black",
- // "navigationStyle": "custom",
- // 对于小程序、APP、H5,设置了,则没有了uniapp自带的头部导航栏。
- "titleNView": false,
- "app-plus": {
- "animationType": "slide-in-right",
- "animationDuration": 300
- }
- // 无用:
- // "mp-weixin": {
- // "usingComponents": {
- // "tui-no-data": "/components/thorui/tui-no-data/tui-no-data" // /pages/index/index
- // }
- // }
- }
- }
|