| 1234567891011121314151617181920212223242526272829303132333435363738 |
- {
- "easycom": {
- "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/index" //登录
- },
- // ---------------------------------------------------------首页
- {
- "path": "pages/index/index" //首页
- },
- {
- "path": "pages/index/kf" //客服
- },
- {
- "path": "pages/mine/index"
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationStyle": "custom",
- "navigationBarTitleText": "新农场",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8"
- },
- "condition" : { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [
- {
- "name": "", //模式名称
- "path": "", //启动页面,必选
- "query": "" //启动参数,在页面的onLoad函数里面得到
- }
- ]
- }
-
- }
|