settingConfig.js 471 B

12345678910111213141516171819202122232425262728
  1. import { commonConfig } from '../../js/config'
  2. export const settingConfig = {
  3. time: '',
  4. theme: 'dark',
  5. // 设置面板属性的显隐
  6. displayOption: {
  7. dataAllocation: {
  8. // 是否存在数据配置
  9. enable: false
  10. }
  11. }
  12. }
  13. const customConfig = {
  14. type: 'timeCountDown',
  15. root: {
  16. endTime: ''
  17. },
  18. customize: {
  19. fontSize: 28,
  20. fontWeight: 700,
  21. color: '#ffffff'
  22. }
  23. }
  24. export const dataConfig = {
  25. ...commonConfig(customConfig)
  26. }