settingConfig.js 792 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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: 'themeSelect',
  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. title: '文本标签占位符',
  32. fontSize: 20,
  33. fontWeight: 700,
  34. color: 'left,#bcc9d4,#bcc9d4'
  35. }
  36. }
  37. export const dataConfig = {
  38. ...commonConfig(customConfig)
  39. }