pages.json 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "lazyCodeLoading":"requiredComponents",
  3. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path" : "pages/borrow/borrow",
  6. "style" :
  7. {
  8. "navigationBarTitleText": "设备信息",
  9. "enablePullDownRefresh": false
  10. }
  11. },
  12. {
  13. "path": "pages/logo/index",
  14. "style": {
  15. "navigationStyle": "custom"
  16. }
  17. }
  18. ,{
  19. "path" : "pages/login/login",
  20. "style" :
  21. {
  22. "navigationBarTitleText": "登录",
  23. "enablePullDownRefresh": false
  24. }
  25. },
  26. {
  27. "path" : "pages/home/home",
  28. "style" :
  29. {
  30. "enablePullDownRefresh": false,
  31. "navigationBarTitleText": "实验室管理系统"
  32. }
  33. },
  34. {
  35. "path" : "pages/search/search",
  36. "style" :
  37. {
  38. "navigationBarTitleText": "搜索设备",
  39. "enablePullDownRefresh": false
  40. }
  41. }
  42. ],
  43. "globalStyle": {
  44. "navigationBarTextStyle": "black",
  45. "navigationBarTitleText": "uni-app",
  46. "navigationBarBackgroundColor": "#F8F8F8",
  47. "backgroundColor": "#F8F8F8"
  48. },
  49. "uniIdRouter": {},
  50. "easycom": {
  51. "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
  52. }
  53. }