pages.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "pages": [
  3. //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  4. {
  5. "path": "pages/index/index",
  6. "style": {
  7. "navigationBarTitleText": ""
  8. }
  9. }
  10. ],
  11. "subpackages": [
  12. {
  13. "root": "src",
  14. "pages": [
  15. {
  16. "path": "roomkit/pages/home",
  17. "style": {
  18. "navigationBarTitleText": "home"
  19. }
  20. },
  21. {
  22. "path": "roomkit/pages/room",
  23. "style": {
  24. "navigationBarTitleText": "room",
  25. "navigationStyle": "custom",
  26. "app-plus": {
  27. "titleView": false
  28. }
  29. }
  30. },
  31. {
  32. "path": "roomkit/TUIKit/components/TUIChat/index",
  33. "style": {
  34. "navigationBarTitleText": "聊天"
  35. }
  36. },
  37. {
  38. "path": "roomkit/TUIKit/components/TUIChat/video-play",
  39. "style": {
  40. "navigationBarTitleText": "腾讯云 IM"
  41. }
  42. }
  43. ]
  44. }
  45. ],
  46. "globalStyle": {
  47. "navigationBarTextStyle": "black",
  48. "navigationBarTitleText": "uni-app",
  49. "navigationBarBackgroundColor": "#F8F8F8",
  50. "backgroundColor": "#F8F8F8",
  51. "app-plus": {
  52. "titleView": false
  53. }
  54. }
  55. }