settingConfig.js 635 B

12345678910111213141516171819202122232425262728293031
  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. activeColor: '#007aff', // 单选框字体激活状态
  24. inactiveColor: '#bcc9d4'// 单选框字体非激活状态
  25. }
  26. }
  27. export const dataConfig = {
  28. ...commonConfig(customConfig)
  29. }