| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "pages": [
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/vote-notice",
- "style": {
- "navigationStyle": "custom" // 隐藏系统导航栏
- }
- },
- {
- "path": "pages/vote",
- "style": {
- "navigationStyle": "custom",
- "navigationBarTitleText": "盐龙街道住宅小区物业公司选聘调研"
- }
- },
- {
- "path": "pages/success",
- "style": {
- "navigationStyle": "custom" // 隐藏系统导航栏
- }
- }
-
- ],
- "globalStyle": {
- "mp-alipay": {
- /* 支付宝小程序特有相关 */
- "transparentTitle": "always",
- "allowsBounceVertical": "NO"
- },
- "usingComponents": {
- "ly-tree-node": "/components/ly-tree/ly-tree-node"
- },
- "navigationBarBackgroundColor": "#0081ff",
- "navigationBarTitleText": "盐龙街道住宅小区物业公司选聘调研",
- // "navigationStyle": "custom",
- "navigationBarTextStyle": "white"
- },
- "usingComponts": true,
- "condition": { //模式配置,仅开发期间生效
- "current": 0, //当前激活的模式(list 的索引项)
- "list": [{
- "name": "表单", //模式名称
- "path": "pages/index/index", //启动页面
- "query": "" //启动参数
- }
- ]
- }
- }
|