settingConfig.js 308 B

123456789101112131415
  1. import { commonConfig } from 'packages/js/config'
  2. export const settingConfig = {
  3. // 设置面板属性的显隐
  4. displayOption: {
  5. dataAllocation: {
  6. // 是否存在数据配置
  7. enable: false
  8. }
  9. }
  10. }
  11. const customConfig = {
  12. }
  13. export const dataConfig = {
  14. ...commonConfig(customConfig)
  15. }