settingConfig.js 484 B

123456789101112131415161718192021222324252627
  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. customize: {
  19. url: '',
  20. radius: 0,
  21. opacity: 100
  22. }
  23. }
  24. export const dataConfig = {
  25. ...commonConfig(customConfig)
  26. }