四零语境后端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.5 KiB

1 day ago
  1. import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages'
  2. export default defineUniPages({
  3. globalStyle: {
  4. navigationStyle: 'default',
  5. navigationBarTitleText: 'uniapp',
  6. navigationBarBackgroundColor: '#f8f8f8',
  7. navigationBarTextStyle: 'white',
  8. backgroundColor: '#000000',
  9. },
  10. easycom: {
  11. autoscan: true,
  12. custom: {
  13. '^wd-(.*)': 'wot-design-uni/components/wd-$1/wd-$1.vue',
  14. '^(?!z-paging-refresh|z-paging-load-more)z-paging(.*)':
  15. 'z-paging/components/z-paging$1/z-paging$1.vue',
  16. },
  17. },
  18. tabBar: {
  19. color: '#aaa',
  20. selectedColor: '#39b54a',
  21. backgroundColor: '#F8F8F8',
  22. borderStyle: 'black',
  23. height: '50px',
  24. fontSize: '11px',
  25. iconWidth: '24px',
  26. spacing: '3px',
  27. list: [
  28. {
  29. iconPath: 'static/tabbar/tabbar-message-2.png',
  30. selectedIconPath: 'static/tabbar/tabbar-message.png',
  31. pagePath: 'pages/message/message',
  32. text: '消息',
  33. },
  34. {
  35. iconPath: 'static/tabbar/tabbar-home-2.png',
  36. selectedIconPath: 'static/tabbar/tabbar-home.png',
  37. pagePath: 'pages/index/index',
  38. text: '协作',
  39. },
  40. // {
  41. // iconPath: 'static/tabbar/tabbar-workHome-2.png',
  42. // selectedIconPath: 'static/tabbar/tabbar-workHome.png',
  43. // pagePath: 'pages-super/flow/flowIndex',
  44. // text: '审批',
  45. // },
  46. {
  47. iconPath: 'static/tabbar/tabbar-user-2.png',
  48. selectedIconPath: 'static/tabbar/tabbar-user.png',
  49. pagePath: 'pages/user/people',
  50. text: '个人',
  51. },
  52. ],
  53. },
  54. })