dictionary-define.ts 1.4 KB

12345678910111213141516171819202122232425262728
  1. export const dictionaryDefine = {
  2. //接口参数 : [ '字典数据list名', '字典数据Map名', '字段数据ObjMap名' ],
  3. label_type: ['labelTypeList', 'labelTypeMap'], // 标签类型
  4. label_level: ['labelLevelList', 'labelLevelMap'], // 标签层级
  5. gx_method: ['gxMethodList', 'gxMethodMap'], // 共享方式
  6. gx_cycle: ['gxCycleList', 'gxCycleMap'], // 共享周期
  7. theme_mode: ['themeModeList', 'themeModeMap'], // 主题模式
  8. default_model: ['defaultModelList', 'defaultModelMap'], // 默认模式
  9. true_false: ['trueFalseList', 'trueFalseMap'], // 是否
  10. fie_type: ['fieTypeList', 'fieTypeMap'], // 字段类型
  11. analyzer: ['analyzerList', 'analyzerMap'], // 分词器
  12. user_status: ['userStatusList', 'userStatusMap'], // 用户状态
  13. role_status: ['roleStatusList', 'roleStatusMap'], // 字典状态
  14. theme_type: ['themeTypeList', 'themeTypeMap'], // 主题类别
  15. theme_status: ['themeStatusList', 'themeStatusMap'], // 主题状态
  16. node_size: ['nodeSizeList', 'nodeSizeMap'], // 关系图谱节点大小
  17. condition_type: ['conditionTypeList', 'conditionTypeMap'], // 条件类型
  18. is_main_index: ['isMainIndexList', 'isMainIndexMap'], // 是否主索引
  19. sort_type: ['sortTypeList', 'sortTypeMap'], // 排序类型
  20. }
  21. const stateMap = {}
  22. Object.keys(dictionaryDefine).map(i => {
  23. stateMap[dictionaryDefine[i][0]] = []
  24. stateMap[dictionaryDefine[i][1]] = new Map()
  25. })
  26. export const dictionary = stateMap