1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/index/index",
- "style": {
- "navigationBarTitleText": "访客预约",
- "enablePullDownRefresh": true,
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/index/wechat",
- "style": {
- "navigationBarTitleText": "登录",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/index/add",
- "style": {
- "navigationBarTitleText": "预约信息",
- "app-plus": {
- "titleNView": false
- }
- }
- },
- {
- "path": "pages/index/detail",
- "style": {
- "navigationBarTitleText": "通行码",
- "app-plus": {
- "titleNView": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "white",
- "navigationBarTitleText": "访客预约",
- "navigationBarBackgroundColor": "#089875",
- "backgroundColor": "#089875"
- }
- }
|