1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "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/index",
- "style": {
- "navigationBarTitleText": "首页"
- }
- },
- // 消息
- {
- "path": "pages/msg/index",
- "style": {
- "navigationBarTitleText": "消息"
- }
- },
- // 我的
- {
- "path": "pages/me/index",
- "style": {
- "navigationBarTitleText": "我的"
- }
- },
- //登录
- {
- "path": "pages/login/index",
- "style": {
- "app-plus": {
- "titleNView": {
- "autoBackButton": false
- }
- }
- }
- }
- ],
- "subPackages": [{
- "root": "pages/login",
- "pages": [{
- "path": "register",
- "style": {
- "navigationBarTitleText": "零售店注销"
- }
- }, {
- "path": "register_2",
- "style": {
- "navigationBarTitleText": "零售店注销"
- }
- }, {
- "path": "register_3",
- "style": {
- "navigationBarTitleText": "零售店注销"
- }
- }]
- }],
- "preloadRule": {},
- "globalStyle": {
- "navigationBarBackgroundColor": "#0095FF",
- "navigationBarTextStyle": "white",
- "app-plus": {
- "bounce": "none" //关闭窗口回弹效果
- }
- },
- "tabBar": {
- "list": [{
- "pagePath": "pages/home/index"
- },
- {
- "pagePath": "pages/msg/index"
- },
- {
- "pagePath": "pages/me/index"
- }
- ]
- }
- }
|