pages.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "easycom": {
  3. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
  4. },
  5. "pages": [{
  6. "path": "pages/login/login",
  7. "style": {
  8. "navigationBarTitleText": ""
  9. //登录
  10. //"navigationStyle":"custom"
  11. }
  12. }, {
  13. "path": "pages/login/chooseRole",
  14. "style": {
  15. "navigationBarTitleText": "选择角色",
  16. "enablePullDownRefresh": false
  17. }
  18. }, {
  19. "path": "pages/login/register",
  20. "style": {
  21. "navigationBarTitleText": "",
  22. "enablePullDownRefresh": false
  23. }
  24. }, {
  25. "path": "pages/index/index",
  26. "style": {
  27. "navigationBarTitleText": "",
  28. "enablePullDownRefresh": false
  29. }
  30. }
  31. ,{
  32. "path" : "pages/personal/personal",
  33. "style" :
  34. {
  35. "navigationBarTitleText": "",
  36. "enablePullDownRefresh": false
  37. }
  38. }
  39. ],
  40. "globalStyle": {
  41. "navigationBarTextStyle": "white",
  42. "navigationBarTitleText": "uni-app",
  43. "navigationBarBackgroundColor": "#fff",
  44. "backgroundColor": "#F8F8F8"
  45. },
  46. "tabBar": {
  47. "color": "#7A7E83",
  48. "selectedColor": "#3cc51f",
  49. "borderStyle": "black",
  50. "backgroundColor": "#ffffff",
  51. "list": [{
  52. "pagePath": "pages/index/index",
  53. "iconPath": "static/image/icon_component.png",
  54. "selectedIconPath": "static/image/icon_component_HL.png",
  55. "text": "首页"
  56. }, {
  57. "pagePath": "pages/personal/personal",
  58. "iconPath": "static/image/icon_API.png",
  59. "selectedIconPath": "static/image/icon_API_HL.png",
  60. "text": "我的"
  61. }]
  62. }
  63. }