123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147 |
- {
- "easycom": {
- "autoscan": true,
- "custom": {
- "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
- }
- },
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index",
- "style": {
- "navigationBarTitleText": "登陆",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/index/index",
- "style": {
- "navigationBarTitleText": "首页",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/order/index",
- "style": {
- "navigationBarTitleText": "订单",
- "navigationStyle": "custom"
- }
- },
- {
- "path": "pages/tabbar/user/index",
- "style": {
- "navigationBarTitleText": "个人中心",
- "navigationStyle": "custom"
- }
- }
- ],
- "subpackages":[
- {
- "root": "pages_module",
- "name":"pages_module",
- "pages":[
- {
- "path": "scanCode/index",
- "style": {
- "navigationBarTitleText": "扫码验劵",
- "enablePullDownRefresh": true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "scanCoupons/index",
- "style": {
- "navigationBarTitleText": "输码验劵",
- "enablePullDownRefresh": true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "orderVerifica/index",
- "style": {
- "navigationBarTitleText": "订单核销",
- "enablePullDownRefresh": true,
- "navigationStyle":"custom"
- }
- }
- ]
- },
- {
- "root": "user_module",
- "name":"user_module",
- "pages":[
- {
- "path": "businessInfo/index",
- "style": {
- "navigationBarTitleText": "商家信息"
- }
- },
- {
- "path": "changeLogo/index",
- "style": {
- "navigationBarTitleText": "店铺LOGO",
- "navigationBarBackgroundColor":"#000",
- "navigationBarTextStyle":"white"
- }
- },
- {
- "path": "changeInfo/index",
- "style": {
- "navigationBarTitleText": "信息修改"
- }
- },
- {
- "path": "merchantCode/index",
- "style": {
- "navigationBarTitleText": "商家码",
- "navigationBarBackgroundColor":"#F7F7F7",
- "navigationBarTextStyle":"black"
- }
- },
- {
- "path": "codeDetail/index",
- "style": {
- "navigationBarTitleText": "商家码详情",
- "navigationStyle": "custom"
- }
- }
- ]
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#F8F8F8"
- },
- "tabBar": {
- "borderStyle": "white",
- "backgroundColor": "white",
- "color": "#000",
- "selectedColor": "#ef530e",
- "list": [
- {
- "pagePath": "pages/tabbar/index/index",
- "text": "首页",
- "iconPath": "static/image/tab-icon/home.png",
- "selectedIconPath": "static/image/tab-icon/home-active.png"
- },
- {
- "pagePath": "pages/tabbar/order/index",
- "text": "订单",
- "iconPath": "static/image/tab-icon/order.png",
- "selectedIconPath": "static/image/tab-icon/order-active.png"
- },
- {
- "pagePath": "pages/tabbar/user/index",
- "text": "我的",
- "iconPath": "static/image/tab-icon/user.png",
- "selectedIconPath": "static/image/tab-icon/user-active.png"
- }
- ]
- },
- "uniIdRouter": {}
- }
|