settingConfig.js 614 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * @Descripttion:
  3. * @Author: liu.shiyi
  4. * @Date: 2022-10-13 11:18:03
  5. * @LastEditTime: 2022-10-13 13:55:11
  6. */
  7. import { commonConfig } from 'data-room-ui/js/config'
  8. export const settingConfig = {
  9. // 设置面板属性的显隐
  10. displayOption: {
  11. dataAllocation: {
  12. // 是否存在数据配置
  13. enable: false
  14. }
  15. }
  16. }
  17. const customConfig = {
  18. type: 'themeSwitcher',
  19. root: {
  20. version: '2023071001'
  21. },
  22. customize: {
  23. title: '主题切换',
  24. fontSize: 20,
  25. fontWeight: 700,
  26. color: 'left,#ffffff,#ffffff'
  27. }
  28. }
  29. export const dataConfig = {
  30. ...commonConfig(customConfig)
  31. }