Plat Admin

queryDict.js 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /**
  2. * Created by luyanan on 18/11/22.
  3. * 'QYGM'----'企业规模'
  4. * 'QYLX'----'企业类型'
  5. * 'XZQH'----'城市级联'
  6. */
  7. /* eslint-disable one-var */
  8. import request from '@/utils/request'
  9. var cacheDict = {
  10. bool: [
  11. { code: '0', caption: '否', enabled: true },
  12. { code: '1', caption: '是', enabled: true }
  13. ]
  14. },
  15. handCache = {},
  16. uri = '/ajax/dict/items',
  17. setDict = function(code, items) {
  18. cacheDict[code] = items
  19. var hs = handCache[code]
  20. if (hs && hs.length) {
  21. hs.forEach(h => h(items))
  22. delete handCache[code]
  23. }
  24. },
  25. loadDict = function(code) {
  26. request.get(uri, {
  27. dict: code
  28. }, function(res) {
  29. setDict(code, res.data)
  30. })
  31. },
  32. applyDict = function(code, hander) {
  33. var dict = cacheDict[code]
  34. if (!dict) {
  35. var hs = handCache[code]
  36. if (!hs) {
  37. handCache[code] = hs = []
  38. loadDict(code)
  39. }
  40. hs.push(hander)
  41. } else {
  42. hander(dict)
  43. }
  44. },
  45. ret = {
  46. applyDict: applyDict
  47. }
  48. export default ret