app.config.ts 793 B

12345678910111213141516171819202122232425262728293031323334353637
  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/index/index',
  4. 'pages/explore/index',
  5. 'pages/profile/index',
  6. 'pages/login/index',
  7. 'pages/register/index'
  8. ],
  9. window: {
  10. backgroundTextStyle: 'light',
  11. navigationBarBackgroundColor: '#1890ff',
  12. navigationBarTitleText: '小程序Starter',
  13. navigationBarTextStyle: 'white',
  14. navigationStyle: 'custom'
  15. },
  16. tabBar: {
  17. custom: true,
  18. color: "#000000",
  19. selectedColor: "#000000",
  20. backgroundColor: "#000000",
  21. list: [
  22. {
  23. pagePath: 'pages/index/index',
  24. text: '首页'
  25. },
  26. {
  27. pagePath: 'pages/explore/index',
  28. text: '发现'
  29. },
  30. {
  31. pagePath: 'pages/profile/index',
  32. text: '我的'
  33. }
  34. ]
  35. },
  36. usingComponents: {}
  37. })