settingConfig.js 525 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * @description: 图片组件配置
  3. * @Date: 2023-03-17 11:17:00
  4. * @Author: xing.heng
  5. */
  6. import { commonConfig } from '../../js/config'
  7. export const settingConfig = {
  8. // 设置面板属性的显隐
  9. displayOption: {
  10. dataAllocation: {
  11. // 是否存在数据配置
  12. enable: false
  13. }
  14. }
  15. }
  16. const customConfig = {
  17. type: 'picture',
  18. root: {
  19. version: '2023071001'
  20. },
  21. customize: {
  22. url: '',
  23. radius: 0,
  24. opacity: 100
  25. }
  26. }
  27. export const dataConfig = {
  28. ...commonConfig(customConfig)
  29. }