微信小程序,访客邀约
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

53 行
1.4 KiB

  1. export default defineAppConfig({
  2. pages: [
  3. 'pages/index/index',
  4. 'pages/contact/index',
  5. 'pages/contact-new/index',
  6. 'pages/contact-edit/index',
  7. 'pages/notifications/index',
  8. 'pages/settings/index',
  9. 'pages/login/index',
  10. 'pages/web-view/index',
  11. 'pages/contact-pass-records/index',
  12. 'pages/contact-edit-logs/index'
  13. ],
  14. window: {
  15. backgroundTextStyle: 'light',
  16. navigationBarBackgroundColor: '#fff',
  17. navigationBarTitleText: 'WeChat',
  18. navigationBarTextStyle: 'black'
  19. },
  20. tabBar: {
  21. custom: false,
  22. color: '#797979',
  23. selectedColor: '#397EF5',
  24. backgroundColor: '#ffffff',
  25. list: [
  26. {
  27. pagePath: 'pages/index/index',
  28. selectedIconPath: 'images/calendar-plus-solid-397ef5.png',
  29. iconPath: 'images/calendar-plus-regular-797979.png',
  30. text: '邀约'
  31. },
  32. {
  33. pagePath: 'pages/notifications/index',
  34. selectedIconPath: 'images/bell-solid-397ef5.png',
  35. iconPath: 'images/bell-regular-797979.png',
  36. text: '通知'
  37. },
  38. {
  39. pagePath: 'pages/contact/index',
  40. selectedIconPath: 'images/address-book-solid-397ef5.png',
  41. iconPath: 'images/address-book-regular-797979.png',
  42. text: '通讯录'
  43. },
  44. {
  45. pagePath: 'pages/settings/index',
  46. selectedIconPath: 'images/user-solid-397ef5.png',
  47. iconPath: 'images/user-regular-797979.png',
  48. text: '个人中心'
  49. }
  50. ]
  51. }
  52. })