dict.ts 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /**
  2. * 数据字典工具类
  3. */
  4. import { useDictStoreWithOut } from '@/store/modules/dict'
  5. import { ElementPlusInfoType } from '@/types/elementPlus'
  6. const dictStore = useDictStoreWithOut()
  7. /**
  8. * 获取 dictType 对应的数据字典数组
  9. *
  10. * @param dictType 数据类型
  11. * @returns {*|Array} 数据字典数组
  12. */
  13. export interface DictDataType {
  14. dictType: string
  15. label: string
  16. value: string | number | boolean
  17. colorType: ElementPlusInfoType | ''
  18. cssClass: string
  19. }
  20. export interface NumberDictDataType extends DictDataType {
  21. value: number
  22. }
  23. export interface StringDictDataType extends DictDataType {
  24. value: string
  25. }
  26. export const getDictOptions = (dictType: string) => {
  27. return dictStore.getDictByType(dictType) || []
  28. }
  29. export const getIntDictOptions = (dictType: string): NumberDictDataType[] => {
  30. // 获得通用的 DictDataType 列表
  31. const dictOptions: DictDataType[] = getDictOptions(dictType)
  32. // 转换成 number 类型的 NumberDictDataType 类型
  33. // why 需要特殊转换:避免 IDEA 在 v-for="dict in getIntDictOptions(...)" 时,el-option 的 key 会告警
  34. const dictOption: NumberDictDataType[] = []
  35. dictOptions.forEach((dict: DictDataType) => {
  36. dictOption.push({
  37. ...dict,
  38. value: parseInt(dict.value + '')
  39. })
  40. })
  41. return dictOption
  42. }
  43. export const getStrDictOptions = (dictType: string) => {
  44. // 获得通用的 DictDataType 列表
  45. const dictOptions: DictDataType[] = getDictOptions(dictType)
  46. // 转换成 string 类型的 StringDictDataType 类型
  47. // why 需要特殊转换:避免 IDEA 在 v-for="dict in getStrDictOptions(...)" 时,el-option 的 key 会告警
  48. const dictOption: StringDictDataType[] = []
  49. dictOptions.forEach((dict: DictDataType) => {
  50. dictOption.push({
  51. ...dict,
  52. value: dict.value + ''
  53. })
  54. })
  55. return dictOption
  56. }
  57. export const getBoolDictOptions = (dictType: string) => {
  58. const dictOption: DictDataType[] = []
  59. const dictOptions: DictDataType[] = getDictOptions(dictType)
  60. dictOptions.forEach((dict: DictDataType) => {
  61. dictOption.push({
  62. ...dict,
  63. value: dict.value + '' === 'true'
  64. })
  65. })
  66. return dictOption
  67. }
  68. /**
  69. * 获取指定字典类型的指定值对应的字典对象
  70. * @param dictType 字典类型
  71. * @param value 字典值
  72. * @return DictDataType 字典对象
  73. */
  74. export const getDictObj = (dictType: string, value: any): DictDataType | undefined => {
  75. const dictOptions: DictDataType[] = getDictOptions(dictType)
  76. for (const dict of dictOptions) {
  77. if (dict.value === value + '') {
  78. return dict
  79. }
  80. }
  81. }
  82. /**
  83. * 获得字典数据的文本展示
  84. *
  85. * @param dictType 字典类型
  86. * @param value 字典数据的值
  87. * @return 字典名称
  88. */
  89. export const getDictLabel = (dictType: string, value: any): string => {
  90. const dictOptions: DictDataType[] = getDictOptions(dictType)
  91. const dictLabel = ref('')
  92. dictOptions.forEach((dict: DictDataType) => {
  93. if (dict.value === value + '') {
  94. dictLabel.value = dict.label
  95. }
  96. })
  97. return dictLabel.value
  98. }
  99. export enum DICT_TYPE {
  100. USER_TYPE = 'user_type',
  101. COMMON_STATUS = 'common_status',
  102. TERMINAL = 'terminal', // 终端
  103. DATE_INTERVAL = 'date_interval', // 数据间隔
  104. // ========== SYSTEM 模块 ==========
  105. SYSTEM_USER_SEX = 'system_user_sex',
  106. SYSTEM_MENU_TYPE = 'system_menu_type',
  107. SYSTEM_ROLE_TYPE = 'system_role_type',
  108. SYSTEM_DATA_SCOPE = 'system_data_scope',
  109. SYSTEM_NOTICE_TYPE = 'system_notice_type',
  110. SYSTEM_LOGIN_TYPE = 'system_login_type',
  111. SYSTEM_LOGIN_RESULT = 'system_login_result',
  112. SYSTEM_SMS_CHANNEL_CODE = 'system_sms_channel_code',
  113. SYSTEM_SMS_TEMPLATE_TYPE = 'system_sms_template_type',
  114. SYSTEM_SMS_SEND_STATUS = 'system_sms_send_status',
  115. SYSTEM_SMS_RECEIVE_STATUS = 'system_sms_receive_status',
  116. SYSTEM_OAUTH2_GRANT_TYPE = 'system_oauth2_grant_type',
  117. SYSTEM_MAIL_SEND_STATUS = 'system_mail_send_status',
  118. SYSTEM_NOTIFY_TEMPLATE_TYPE = 'system_notify_template_type',
  119. SYSTEM_SOCIAL_TYPE = 'system_social_type',
  120. // ========== INFRA 模块 ==========
  121. INFRA_BOOLEAN_STRING = 'infra_boolean_string',
  122. INFRA_JOB_STATUS = 'infra_job_status',
  123. INFRA_JOB_LOG_STATUS = 'infra_job_log_status',
  124. INFRA_API_ERROR_LOG_PROCESS_STATUS = 'infra_api_error_log_process_status',
  125. INFRA_CONFIG_TYPE = 'infra_config_type',
  126. INFRA_CODEGEN_TEMPLATE_TYPE = 'infra_codegen_template_type',
  127. INFRA_CODEGEN_FRONT_TYPE = 'infra_codegen_front_type',
  128. INFRA_CODEGEN_SCENE = 'infra_codegen_scene',
  129. INFRA_FILE_STORAGE = 'infra_file_storage',
  130. INFRA_OPERATE_TYPE = 'infra_operate_type',
  131. // ========== BPM 模块 ==========
  132. BPM_PROCESS_INSTANCE_STATUS = 'bpm_process_instance_status',
  133. BPM_TASK_STATUS = 'bpm_task_status',
  134. BPM_PROCESS_LISTENER_TYPE = 'bpm_process_listener_type',
  135. BPM_PROCESS_LISTENER_VALUE_TYPE = 'bpm_process_listener_value_type',
  136. // ========== AI - 人工智能模块 ==========
  137. AI_PLATFORM = 'ai_platform', // AI 平台
  138. AI_MODEL_TYPE = 'ai_model_type', // AI 模型类型
  139. AI_IMAGE_STATUS = 'ai_image_status', // AI 图片状态
  140. AI_VIDEO_STATUS = 'ai_video_status', // AI 视频状态
  141. AI_MUSIC_STATUS = 'ai_music_status', // AI 音乐状态
  142. AI_GENERATE_MODE = 'ai_generate_mode', // AI 生成模式
  143. AI_WRITE_TYPE = 'ai_write_type', // AI 写作类型
  144. AI_WRITE_LENGTH = 'ai_write_length', // AI 写作长度
  145. AI_WRITE_FORMAT = 'ai_write_format', // AI 写作格式
  146. AI_WRITE_TONE = 'ai_write_tone', // AI 写作语气
  147. AI_WRITE_LANGUAGE = 'ai_write_language', // AI 写作语言
  148. AI_TTS_TYPE = 'ai_tts_type', // AI 写作语言
  149. // ========== COURSE - 课程管理模块 ==========
  150. COURSE_QUESTION_TYPE = 'bjdx_quest_type', // 试题类型
  151. COURSE_LABEL = 'bjdx_course_label', // 课程标签
  152. COURSE_COUTNET_TYPE = 'bjdx_course_content_type', // 课程内容类型
  153. COURSE_QUEST_SHOW_TYPE = 'bjdx_course_quest_show_type', // 课程试题呈现类型
  154. COURSE_TYPE = 'bjdx_course_type', // 课程类型
  155. // ========== QUESTIONNAIRE - 评估模块 ==========
  156. BJDX_QUESTIONNAIRE_STATUS = 'bjdx_questionnaire_status', // 问卷状态
  157. BJDX_QUEST_IS_CORRECT = 'bjdx_quest_is_correct', // 问卷状态
  158. // ========== Blockly - 地图编程游戏 ==========
  159. AI_BLOCKLY_MAP_TYPE = 'ai_blockly_map_type', // 地图类型
  160. BLOCKLY_COURSE_LABEL = 'blockly_course_label', // 课程标签
  161. BLOCKLY_COURSE_COUTNET_TYPE = 'blockly_course_content_type', // 课程内容类型
  162. BLOCKLY_MAP_SPECIAL = 'blockly_map_special', // 地图特殊方块类型
  163. BLOCKLY_MAP_MARK = 'blockly_map_mark', // 地图标记标签
  164. // ========== AI实验课 ==========
  165. AICOURSE_COURSE_LABEL = 'aicourse_course_label', // 课程标签
  166. // ========== 平台 ==========
  167. WEB_ROLE_ROUTE = 'web_role_route', // 角色Web路由权限
  168. SYSTEM_INVITE_CODE_STATUS = 'system_invite_code_status', // 邀请码状态
  169. }