app.config.ts 729 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/index/index',
  4. 'pages/Second',
  5. 'pages/Login',
  6. 'pages/Auth',
  7. 'pages/ChooseAuth',
  8. 'pages/ChooseScenario',
  9. 'pages/SetSchedule'
  10. ],
  11. subPackages:[
  12. {
  13. root:'moduleA',
  14. pages:[
  15. 'pages/third'
  16. ]
  17. }
  18. ],
  19. tabBar: {
  20. list:[
  21. {
  22. pagePath: 'pages/index/index',
  23. text: '首页',
  24. },
  25. {
  26. pagePath: 'pages/Second',
  27. text: '第二页',
  28. }
  29. ]
  30. },
  31. window: {
  32. "backgroundTextStyle": "light",
  33. "navigationBarBackgroundColor": "#000000",
  34. "navigationBarTitleText": "Weixin",
  35. "navigationBarTextStyle": "white",
  36. "backgroundColor": "#000000"
  37. },
  38. darkmode:true
  39. })