123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login-account",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/login/login-share",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/login/login-error",
- "style": {
- "navigationBarTitleText": "",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/collection/sms",
- "style": {
- "navigationBarTitleText": "款项识别",
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/collection/nosms",
- "style": {
- "navigationBarTitleText": "无短信收款",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/collection/list",
- "style": {
- "navigationBarTitleText": "收款列表",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/collection/detail",
- "style": {
- "navigationBarTitleText": "收款款项详情",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/ordinary/index",
- "style": {
- "navigationBarTitleText": "订单款关联",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/ordinary/examine-detail",
- "style": {
- "navigationBarTitleText": "审核详情",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/ordinary/detail",
- "style": {
- "navigationBarTitleText": "审核通过",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/nonorder/detail",
- "style": {
- "navigationBarTitleText": "非订单详情",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/return/index",
- "style": {
- "navigationBarTitleText": "返佣款关联",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/return/detail",
- "style": {
- "navigationBarTitleText": "返佣详情",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/return/list",
- "style": {
- "navigationBarTitleText": "口头返佣关联",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/refund/index",
- "style": {
- "navigationBarTitleText": "供应商退款关联",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/refund/detail",
- "style": {
- "navigationBarTitleText": "供应商退款详情",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/relation/order/detail",
- "style": {
- "navigationBarTitleText": "子订单详情",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },
- {
- "path": "pages/tabBar/user/mine",
- "style": {
- "navigationBarTitleText": "店铺",
- "navigationStyle":"custom"
- }
- },{
- "path": "pages/tabBar/order/index",
- "style": {
- "navigationBarTitleText": "订单",
- "enablePullDownRefresh" : true,
- "navigationStyle":"custom"
- }
- },{
- "path": "pages/tabBar/product/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- }
- ],
- "subPackages": [],
- "tabBar": {
- "height":"80",
- "color": "#C6C6C6",
- "selectedColor": "#4688fa",
- "borderStyle": "black",
- "backgroundColor": "#ffffff",
- "list": [{
- "pagePath": "pages/tabBar/order/index",
- "iconPath": "static/icon-order@2x.png",
- "selectedIconPath": "static/icon-order-active@2x.png",
- "text": "订单"
- },{
- "pagePath": "pages/tabBar/product/index",
- "iconPath": "static/icon-product@2x.png",
- "selectedIconPath": "static/icon-product-active@2x.png",
- "text": "商品"
- },{
- "pagePath": "pages/tabBar/user/mine",
- "iconPath": "static/icon-shop@2x.png",
- "selectedIconPath": "static/icon-shop-active@2x.png",
- "text": "店铺"
- }
- ]
- },
- "easycom": {
- "autoscan": true,
- "custom": {
- "tui-(.*)": "@/components/thorui/tui-$1/tui-$1.vue"
- }
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "采美CRM系统",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
- }
|