pages.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "scripts": {
  3. "dev": "NODE_ENV=development uni-app",
  4. "test": "NODE_ENV=test uni-app",
  5. "build": "NODE_ENV=production uni-app build"
  6. },
  7. "pages": [
  8. {
  9. "path": "pages/auth/login",
  10. "style": {
  11. "navigationBarTitleText": "登录"
  12. }
  13. }
  14. ,
  15. {
  16. "path": "pages/homepage/index",
  17. "style": {
  18. "navigationBarTitleText": "九银站点助手"
  19. }
  20. }
  21. ,
  22. {
  23. "path": "pages/auth/register",
  24. "style": {
  25. "navigationBarTitleText": "注册"
  26. }
  27. },
  28. {
  29. "path": "pages/auth/forgot",
  30. "style": {
  31. "navigationBarTitleText": "找回密码"
  32. }
  33. },
  34. {
  35. "path": "pages/personalInfo/index",
  36. "style": {
  37. "navigationBarTitleText": "九银站点助手"
  38. }
  39. }
  40. ],
  41. "globalStyle": {
  42. "navigationBarTextStyle": "black",
  43. "navigationBarTitleText": "uni-app",
  44. "navigationBarBackgroundColor": "#F8F8F8",
  45. "backgroundColor": "#F8F8F8"
  46. },
  47. "uniIdRouter": {},
  48. "tabBar": {
  49. "color": "#999",
  50. "selectedColor": "#007AFF",
  51. "borderStyle": "black",
  52. "backgroundColor": "#ffffff",
  53. "list": [
  54. {
  55. "pagePath": "pages/homepage/index",
  56. "text": "首页",
  57. "iconPath": "static/tabbar/home.png",
  58. "selectedIconPath": "static/tabbar/home-active.png"
  59. },
  60. {
  61. "pagePath": "pages/personalInfo/index",
  62. "text": "我的",
  63. "iconPath": "static/tabbar/personal.png",
  64. "selectedIconPath": "static/tabbar/personal-active.png"
  65. }
  66. ]
  67. }
  68. }