settingConfig.js 806 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. // 绕x轴旋转角度
  22. rotateX: 0,
  23. // 绕y轴旋转角度
  24. rotateY: 0,
  25. // 绕z轴旋转角度
  26. rotateZ: 0,
  27. // 透视距离
  28. perspective: 500
  29. },
  30. customize: {
  31. activeColor: '#007aff', // 单选框字体激活状态
  32. inactiveColor: '#bcc9d4'// 单选框字体非激活状态
  33. }
  34. }
  35. export const dataConfig = {
  36. ...commonConfig(customConfig)
  37. }