app.config.ts 796 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: '#7f7f7f',
  19. selectedColor: '#1890ff',
  20. backgroundColor: '#ffffff',
  21. borderStyle: 'white',
  22. list: [
  23. {
  24. pagePath: 'pages/index/index',
  25. text: '首页'
  26. },
  27. {
  28. pagePath: 'pages/explore/index',
  29. text: '发现'
  30. },
  31. {
  32. pagePath: 'pages/profile/index',
  33. text: '我的'
  34. }
  35. ]
  36. }
  37. })