pages.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue",
  6. "^zhao-(.*)": "@/components/zhao-$1.vue"
  7. }
  8. },
  9. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  10. {
  11. "path": "pages/index/index",
  12. "style": {
  13. "navigationBarTitleText": "粉丝私域服务中心"
  14. }
  15. },
  16. {
  17. "path": "pages/mine/mine",
  18. "style": {
  19. "navigationBarTitleText": "",
  20. "enablePullDownRefresh": false,
  21. "navigationStyle": "custom"
  22. }
  23. },
  24. {
  25. "path": "pages/login/login",
  26. "style": {
  27. "navigationBarTitleText": "登录",
  28. "enablePullDownRefresh": false
  29. }
  30. }
  31. ],
  32. "subPackages": [{
  33. "root": "pageA",
  34. "pages": [{
  35. "path": "index",
  36. "style": {
  37. "navigationBarTitleText": "",
  38. "enablePullDownRefresh": false
  39. }
  40. },
  41. {
  42. "path": "xieyi",
  43. "style": {
  44. "navigationBarTitleText": "用户协议",
  45. "enablePullDownRefresh": false
  46. }
  47. },
  48. {
  49. "path": "yinsi",
  50. "style": {
  51. "navigationBarTitleText": "隐私政策",
  52. "enablePullDownRefresh": false
  53. }
  54. }
  55. ]
  56. }],
  57. "globalStyle": {
  58. "navigationBarTextStyle": "black",
  59. "navigationBarTitleText": "粉丝私域服务中心",
  60. "navigationBarBackgroundColor": "#F8F8F8",
  61. "backgroundColor": "#F8F8F8"
  62. },
  63. "uniIdRouter": {},
  64. "tabBar": {
  65. "selectedColor": "#57C2F4",
  66. "color": "#7A7A7A ",
  67. "list": [{
  68. "iconPath": "/static/images/index.png",
  69. "selectedIconPath": "/static/images/index1.png",
  70. "text": "首页",
  71. "pagePath": "pages/index/index"
  72. }, {
  73. "iconPath": "/static/images/mine.png",
  74. "selectedIconPath": "/static/images/mine1.png",
  75. "text": "我的",
  76. "pagePath": "pages/mine/mine"
  77. }]
  78. }
  79. }