DictOptions.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. import { mergeRecursive } from "@/utils/ruoyi";
  2. import dictConverter from './DictConverter'
  3. export const options = {
  4. metas: {
  5. '*': {
  6. /**
  7. * 字典请求,方法签名为function(dictMeta: DictMeta): Promise
  8. */
  9. request: (dictMeta) => {
  10. return Promise.resolve([])
  11. },
  12. /**
  13. * 字典响应数据转换器,方法签名为function(response: Object, dictMeta: DictMeta): DictData
  14. */
  15. responseConverter,
  16. labelField: 'label',
  17. valueField: 'value',
  18. },
  19. },
  20. /**
  21. * 默认标签字段
  22. */
  23. DEFAULT_LABEL_FIELDS: ['label', 'name', 'title'],
  24. /**
  25. * 默认值字段
  26. */
  27. DEFAULT_VALUE_FIELDS: ['value', 'id', 'uid', 'key'],
  28. }
  29. /**
  30. * 映射字典
  31. * @param {Object} response 字典数据
  32. * @param {DictMeta} dictMeta 字典元数据
  33. * @returns {DictData}
  34. */
  35. function responseConverter(response, dictMeta) {
  36. const dicts = response.content instanceof Array ? response.content : response
  37. if (dicts === undefined) {
  38. console.warn(`no dict data of "${dictMeta.type}" found in the response`)
  39. return []
  40. }
  41. return dicts.map(d => dictConverter(d, dictMeta))
  42. }
  43. export function mergeOptions(src) {
  44. mergeRecursive(options, src)
  45. }
  46. export default options