123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- {
- "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": {
- "navigationStyle": "custom", // 隐藏系统导航栏
- "navigationBarTextStyle": "black"
- }
- },
- // 消息
- {
- "path": "pages/msg/index",
- "style": {
- "navigationBarTitleText": "消息"
- }
- },
- // 我的
- {
- "path": "pages/me/index",
- "style": {
- // "navigationBarTitleText": "我的",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- //登录
- {
- "path": "pages/login/index",
- "style": {
- "app-plus": {
- "titleNView": false
- }
- }
- }
- ],
- "subPackages": [{
- "root": "pages/login",
- "pages": [{
- "path": "register",
- "style": {
- "navigationBarTitleText": "零售店注销"
- }
- }, {
- "path": "register_2",
- "style": {
- "navigationBarTitleText": "零售店注销"
- }
- }, {
- "path": "register_3",
- "style": {
- "navigationBarTitleText": "零售店注销"
- }
- }]
- }, {
- "root": "pages/shopping",
- "pages": [{
- "path": "shopping_car/shopping_car",
- "style": {
- "navigationStyle": "custom", // 隐藏系统导航栏
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "integral_mall/integral_mall",
- "style": {
- "navigationBarTitleText": "积分商城"
- }
- }, {
- "path": "inline_shop/inline_shop",
- "style": {
- "navigationStyle": "custom", // 隐藏系统导航栏
- "navigationBarTextStyle": "white"
- }
- }, {
- "path": "inline_shop_details/inline_shop_details",
- "style": {
- "navigationBarTitleText": "商品详情"
- }
- }]
- }, {
- "root": "pages/me",
- "pages": [
- //我的供应商
- {
- "path": "suppliers",
- "style": {
- "navigationBarTitleText": "我的供应商",
- "navigationBarBackgroundColor": "#1692F7"
- }
- },
- //优惠卷
- {
- "path": "coupon",
- "style": {
- "navigationBarTitleText": "我的优惠卷"
- }
- },
- //新建收货地址
- {
- "path": "modify",
- "style": {
- "navigationBarTitleText": "新建收货地址"
- }
- },
- //收货地址
- {
- "path": "address",
- "style": {
- "navigationBarTitleText": "收货地址",
- "app-plus": {
- "titleNView": {
- "buttons": [{
- "text": "编辑",
- "fontSize": "18px",
- "float": "right"
- }]
- }
- }
- }
- },
- //查询结果
- {
- "path": "scancodequery/result",
- "style": {
- "navigationBarTitleText": "查询结果",
- "app-plus": {
- "bounce": "none" //取消页面上的回弹效果
- }
- }
- }
- ]
- }],
- "preloadRule": {},
- "globalStyle": {
- "navigationBarBackgroundColor": "#0095FF",
- "navigationBarTextStyle": "white",
- "app-plus": {
- "bounce": "none" //关闭窗口回弹效果
- }
- },
- "tabBar": {
- "list": [{
- "pagePath": "pages/home/index"
- },
- {
- "pagePath": "pages/msg/index"
- },
- {
- "pagePath": "pages/me/index"
- }
- ]
- }
- }
|