| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- {
- // "condition": { //模式配置,仅开发期间生效
- // "current": 0, //当前激活的模式(list 的索引项)
- // "list": []
- // },
- //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- "pages": [
- {
- "path" : "pages/signs/main/main",
- "style" : {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom",
- "navigationBarTextStyle":"black"
- }
- }
- ,{
- "path" : "pages/signs/me/me",
- "style" : {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom",
- "navigationBarTextStyle":"black"
- }
- },
- {
- "path" : "pages/loading/loading",
- "style" :
- {
- "navigationBarTitleText": "加载页面",
- "enablePullDownRefresh": false,
- "navigationStyle": "custom",
- "navigationBarTextStyle":"white"
- }
- }
- ,{
- "path" : "pages/signs/subscribe/subscribe",
- "style" : {
- "navigationBarTitleText": "立即预约",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle":"black"
- }
- }
- ,{
- "path" : "pages/signs/address/address",
- "style" :
- {
- "navigationBarTitleText": "添加阁位",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle":"black"
- }
- }
- ,{
- "path" : "pages/signs/invitation/invitation",
- "style" :
- {
- "navigationBarTitleText": "预约完成",
- "enablePullDownRefresh": false,
- "navigationBarTextStyle":"black"
- }
- }
- ,{
- "path" : "pages/signs/userCenter/userCenter",
- "style" :
- {
- "navigationBarTitleText": "个人中心",
- "enablePullDownRefresh": false
- }
- },
- {
- "path" : "pages/signs/contract/contract",
- "style" :
- {
- "navigationBarTitleText": "",
- "enablePullDownRefresh": false
- }
- }
- ],
- "subPackages": [],
- "preloadRule": {
- // "pages/views": {
- // "network": "all",
- // "packages": []
- // }
- },
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "",
- "navigationBarBackgroundColor": "#FFFFFF",
- "backgroundColor": "#FFFFFF"
- },
- "tabBar": {
- "color": "#bbbbbb",
- "selectedColor": "#333",
- "backgroundColor": "#ffffff",
- "borderStyle": "black",
- "list": [{
- "pagePath": "pages/signs/main/main",
- "iconPath": "static/app/tabs/tab1.png",
- "selectedIconPath": "static/app/tabs/tab1_on.png",
- "text": "预约"
- },
- {
- "pagePath": "pages/signs/me/me",
- "iconPath": "static/app/tabs/tab2.png",
- "selectedIconPath": "static/app/tabs/tab2_on.png",
- "text": "我的"
- }
- ]
- }
- }
|