settingConfig.js 559 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * @description: 外链配置
  3. * @Date: 2022-09-01 15:26:34
  4. * @Author: xingheng
  5. */
  6. import { commonConfig } from '../../js/config'
  7. export const settingConfig = {
  8. theme: 'dark',
  9. displayOption: {
  10. dataAllocation: {
  11. // 是否存在数据配置
  12. enable: false
  13. }
  14. }
  15. }
  16. const customConfig = {
  17. type: 'iframeChart',
  18. root: {
  19. version: '2023071001',
  20. url: 'https://www.runoob.com/'
  21. },
  22. customize: {
  23. fontSize: 20,
  24. fontWeight: 700,
  25. color: '#36474f'
  26. }
  27. }
  28. export const dataConfig = {
  29. ...commonConfig(customConfig)
  30. }