app.config.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/category',
  4. 'pages/share/share',
  5. 'pages/home/home'
  6. ],
  7. window: {
  8. backgroundTextStyle: 'light',
  9. navigationBarBackgroundColor: '#000',
  10. navigationBarTitleText: 'WeChat',
  11. navigationBarTextStyle: 'white',
  12. backgroundColorTop: 'black',
  13. backgroundColorBottom:'#000',
  14. backgroundColor: '#000',
  15. backgroundImageColor:'#000'
  16. },
  17. "subpackages": [
  18. {
  19. "root": "subPackages/safe",
  20. "pages": [
  21. "complaining/index"
  22. ]
  23. },
  24. {
  25. "root": "subPackages/my",
  26. "pages": [
  27. "edit/edit",
  28. "edit/editUpload"
  29. ]
  30. }
  31. ],
  32. tabBar: {
  33. custom: true,
  34. color: '#ffffff',
  35. selectedColor: '#DC143C',
  36. backgroundColor: '#000000',
  37. list: [
  38. {
  39. pagePath: 'pages/category',
  40. text: '首页'
  41. },
  42. {
  43. pagePath: 'pages/home/home',
  44. text: '我的'
  45. }
  46. ]
  47. }
  48. })