Field.ts 421 B

1234567891011121314151617
  1. import { SettingTypes, ItemTypes, ISettingItem } from './types'
  2. const Field: ISettingItem = {
  3. key: 'field',
  4. name: '字段设置',
  5. constrants: [{
  6. settingType: SettingTypes.Dimension | SettingTypes.Indicator | SettingTypes.Color | SettingTypes.Tip,
  7. itemType: ItemTypes.Category | ItemTypes.Value,
  8. itemValueType: null
  9. }],
  10. sub: false,
  11. items: [{
  12. field: '字段设置'
  13. }]
  14. }
  15. export default Field