dict.ts 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  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 const getDictOptions = (dictType: string) => {
  24. return dictStore.getDictByType(dictType) || []
  25. }
  26. export const getIntDictOptions = (dictType: string): NumberDictDataType[] => {
  27. // 获得通用的 DictDataType 列表
  28. const dictOptions: DictDataType[] = getDictOptions(dictType)
  29. // 转换成 number 类型的 NumberDictDataType 类型
  30. // why 需要特殊转换:避免 IDEA 在 v-for="dict in getIntDictOptions(...)" 时,el-option 的 key 会告警
  31. const dictOption: NumberDictDataType[] = []
  32. dictOptions.forEach((dict: DictDataType) => {
  33. dictOption.push({
  34. ...dict,
  35. value: parseInt(dict.value + '')
  36. })
  37. })
  38. return dictOption
  39. }
  40. export const getStrDictOptions = (dictType: string) => {
  41. const dictOption: DictDataType[] = []
  42. const dictOptions: DictDataType[] = getDictOptions(dictType)
  43. dictOptions.forEach((dict: DictDataType) => {
  44. dictOption.push({
  45. ...dict,
  46. value: dict.value + ''
  47. })
  48. })
  49. return dictOption
  50. }
  51. export const getBoolDictOptions = (dictType: string) => {
  52. const dictOption: DictDataType[] = []
  53. const dictOptions: DictDataType[] = getDictOptions(dictType)
  54. dictOptions.forEach((dict: DictDataType) => {
  55. dictOption.push({
  56. ...dict,
  57. value: dict.value + '' === 'true'
  58. })
  59. })
  60. return dictOption
  61. }
  62. /**
  63. * 获取指定字典类型的指定值对应的字典对象
  64. * @param dictType 字典类型
  65. * @param value 字典值
  66. * @return DictDataType 字典对象
  67. */
  68. export const getDictObj = (dictType: string, value: any): DictDataType | undefined => {
  69. const dictOptions: DictDataType[] = getDictOptions(dictType)
  70. for (const dict of dictOptions) {
  71. if (dict.value === value + '') {
  72. return dict
  73. }
  74. }
  75. }
  76. /**
  77. * 获得字典数据的文本展示
  78. *
  79. * @param dictType 字典类型
  80. * @param value 字典数据的值
  81. * @return 字典名称
  82. */
  83. export const getDictLabel = (dictType: string, value: any): string => {
  84. const dictOptions: DictDataType[] = getDictOptions(dictType)
  85. const dictLabel = ref('')
  86. dictOptions.forEach((dict: DictDataType) => {
  87. if (dict.value === value + '') {
  88. dictLabel.value = dict.label
  89. }
  90. })
  91. return dictLabel.value
  92. }
  93. export enum DICT_TYPE {
  94. USER_TYPE = 'user_type',
  95. COMMON_STATUS = 'common_status',
  96. TERMINAL = 'terminal', // 终端
  97. // ========== SYSTEM 模块 ==========
  98. SYSTEM_USER_SEX = 'system_user_sex',
  99. SYSTEM_MENU_TYPE = 'system_menu_type',
  100. SYSTEM_ROLE_TYPE = 'system_role_type',
  101. SYSTEM_DATA_SCOPE = 'system_data_scope',
  102. SYSTEM_NOTICE_TYPE = 'system_notice_type',
  103. SYSTEM_OPERATE_TYPE = 'system_operate_type',
  104. SYSTEM_LOGIN_TYPE = 'system_login_type',
  105. SYSTEM_LOGIN_RESULT = 'system_login_result',
  106. SYSTEM_SMS_CHANNEL_CODE = 'system_sms_channel_code',
  107. SYSTEM_SMS_TEMPLATE_TYPE = 'system_sms_template_type',
  108. SYSTEM_SMS_SEND_STATUS = 'system_sms_send_status',
  109. SYSTEM_SMS_RECEIVE_STATUS = 'system_sms_receive_status',
  110. SYSTEM_ERROR_CODE_TYPE = 'system_error_code_type',
  111. SYSTEM_OAUTH2_GRANT_TYPE = 'system_oauth2_grant_type',
  112. SYSTEM_MAIL_SEND_STATUS = 'system_mail_send_status',
  113. SYSTEM_NOTIFY_TEMPLATE_TYPE = 'system_notify_template_type',
  114. SYSTEM_SOCIAL_TYPE = 'system_social_type',
  115. // ========== INFRA 模块 ==========
  116. INFRA_BOOLEAN_STRING = 'infra_boolean_string',
  117. INFRA_JOB_STATUS = 'infra_job_status',
  118. INFRA_JOB_LOG_STATUS = 'infra_job_log_status',
  119. INFRA_API_ERROR_LOG_PROCESS_STATUS = 'infra_api_error_log_process_status',
  120. INFRA_CONFIG_TYPE = 'infra_config_type',
  121. INFRA_CODEGEN_TEMPLATE_TYPE = 'infra_codegen_template_type',
  122. INFRA_CODEGEN_FRONT_TYPE = 'infra_codegen_front_type',
  123. INFRA_CODEGEN_SCENE = 'infra_codegen_scene',
  124. INFRA_FILE_STORAGE = 'infra_file_storage',
  125. // ========== BPM 模块 ==========
  126. BPM_MODEL_CATEGORY = 'bpm_model_category',
  127. BPM_MODEL_FORM_TYPE = 'bpm_model_form_type',
  128. BPM_TASK_ASSIGN_RULE_TYPE = 'bpm_task_assign_rule_type',
  129. BPM_PROCESS_INSTANCE_STATUS = 'bpm_process_instance_status',
  130. BPM_PROCESS_INSTANCE_RESULT = 'bpm_process_instance_result',
  131. BPM_TASK_ASSIGN_SCRIPT = 'bpm_task_assign_script',
  132. BPM_OA_LEAVE_TYPE = 'bpm_oa_leave_type',
  133. // ========== PAY 模块 ==========
  134. PAY_CHANNEL_CODE = 'pay_channel_code', // 支付渠道编码类型
  135. PAY_ORDER_STATUS = 'pay_order_status', // 商户支付订单状态
  136. PAY_REFUND_STATUS = 'pay_refund_status', // 退款订单状态
  137. PAY_NOTIFY_STATUS = 'pay_notify_status', // 商户支付回调状态
  138. PAY_NOTIFY_TYPE = 'pay_notify_type', // 商户支付回调状态
  139. PAY_TRANSFER_STATUS = 'pay_transfer_status', // 转账订单状态
  140. PAY_TRANSFER_TYPE = 'pay_transfer_type', // 转账订单状态
  141. // ========== MP 模块 ==========
  142. MP_AUTO_REPLY_REQUEST_MATCH = 'mp_auto_reply_request_match', // 自动回复请求匹配类型
  143. MP_MESSAGE_TYPE = 'mp_message_type', // 消息类型
  144. // ========== MALL - 会员模块 ==========
  145. MEMBER_POINT_BIZ_TYPE = 'member_point_biz_type', // 积分的业务类型
  146. MEMBER_EXPERIENCE_BIZ_TYPE = 'member_experience_biz_type', // 会员经验业务类型
  147. // ========== MALL - 商品模块 ==========
  148. PRODUCT_SPU_STATUS = 'product_spu_status', //商品状态
  149. // ========== MALL - 交易模块 ==========
  150. EXPRESS_CHARGE_MODE = 'trade_delivery_express_charge_mode', //快递的计费方式
  151. TRADE_AFTER_SALE_STATUS = 'trade_after_sale_status', // 售后 - 状态
  152. TRADE_AFTER_SALE_WAY = 'trade_after_sale_way', // 售后 - 方式
  153. TRADE_AFTER_SALE_TYPE = 'trade_after_sale_type', // 售后 - 类型
  154. TRADE_ORDER_TYPE = 'trade_order_type', // 订单 - 类型
  155. TRADE_ORDER_STATUS = 'trade_order_status', // 订单 - 状态
  156. TRADE_ORDER_ITEM_AFTER_SALE_STATUS = 'trade_order_item_after_sale_status', // 订单项 - 售后状态
  157. TRADE_DELIVERY_TYPE = 'trade_delivery_type', // 配送方式
  158. BROKERAGE_ENABLED_CONDITION = 'brokerage_enabled_condition', // 分佣模式
  159. BROKERAGE_BIND_MODE = 'brokerage_bind_mode', // 分销关系绑定模式
  160. BROKERAGE_BANK_NAME = 'brokerage_bank_name', // 佣金提现银行
  161. BROKERAGE_WITHDRAW_TYPE = 'brokerage_withdraw_type', // 佣金提现类型
  162. BROKERAGE_RECORD_BIZ_TYPE = 'brokerage_record_biz_type', // 佣金业务类型
  163. BROKERAGE_RECORD_STATUS = 'brokerage_record_status', // 佣金状态
  164. BROKERAGE_WITHDRAW_STATUS = 'brokerage_withdraw_status', // 佣金提现状态
  165. // ========== MALL - 营销模块 ==========
  166. PROMOTION_DISCOUNT_TYPE = 'promotion_discount_type', // 优惠类型
  167. PROMOTION_PRODUCT_SCOPE = 'promotion_product_scope', // 营销的商品范围
  168. PROMOTION_COUPON_TEMPLATE_VALIDITY_TYPE = 'promotion_coupon_template_validity_type', // 优惠劵模板的有限期类型
  169. PROMOTION_COUPON_STATUS = 'promotion_coupon_status', // 优惠劵的状态
  170. PROMOTION_COUPON_TAKE_TYPE = 'promotion_coupon_take_type', // 优惠劵的领取方式
  171. PROMOTION_ACTIVITY_STATUS = 'promotion_activity_status', // 优惠活动的状态
  172. PROMOTION_CONDITION_TYPE = 'promotion_condition_type', // 营销的条件类型枚举
  173. PROMOTION_BARGAIN_RECORD_STATUS = 'promotion_bargain_record_status', // 砍价记录的状态
  174. PROMOTION_COMBINATION_RECORD_STATUS = 'promotion_combination_record_status', // 拼团记录的状态
  175. PROMOTION_BANNER_POSITION = 'promotion_banner_position', // banner 定位
  176. // ========== CRM - 客户管理模块 ==========
  177. CRM_AUDIT_STATUS = 'crm_audit_status', // CRM 审批状态
  178. CRM_BIZ_TYPE = 'crm_biz_type', // CRM 业务类型
  179. CRM_RECEIVABLE_RETURN_TYPE = 'crm_receivable_return_type', // CRM 回款的还款方式
  180. CRM_CUSTOMER_INDUSTRY = 'crm_customer_industry',
  181. CRM_CUSTOMER_LEVEL = 'crm_customer_level',
  182. CRM_CUSTOMER_SOURCE = 'crm_customer_source',
  183. CRM_PRODUCT_STATUS = 'crm_product_status',
  184. CRM_PERMISSION_LEVEL = 'crm_permission_level', // CRM 数据权限的级别
  185. CRM_PRODUCT_UNIT = 'crm_product_unit', // 产品单位
  186. CRM_FOLLOW_UP_TYPE = 'crm_follow_up_type' // 跟进方式
  187. }