12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/distinguish/index",
- "style": {
- "navigationBarTitleText": "",
- "enablePullDownRefresh":true,
- "navigationStyle":"custom"
- }
- },{
- "path": "pages/login/login-account",
- "style": {
- "navigationBarTitleText": "",
- "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函数里面得到
- }
- ]
- }
- }
|