123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- * Created by luyanan on 18/11/22.
- * 'QYGM'----'企业规模'
- * 'QYLX'----'企业类型'
- * 'XZQH'----'城市级联'
- */
- import request from '@/utils/request'
- var cacheDict = {
- bool: [
- { code: '0', caption: '否', enabled: true },
- { code: '1', caption: '是', enabled: true }
- ]
- },
- handCache = {},
- uri = '/ajax/dict/items',
- setDict = function(code, items) {
- cacheDict[code] = items
- var hs = handCache[code]
- if (hs && hs.length) {
- hs.forEach(h => h(items))
- delete handCache[code]
- }
- },
- loadDict = function(code) {
- request.get(uri, {
- dict: code
- }, function(res) {
- setDict(code, res.data)
- })
- },
- applyDict = function(code, hander) {
- var dict = cacheDict[code]
- if (!dict) {
- var hs = handCache[code]
- if (!hs) {
- handCache[code] = hs = []
- loadDict(code)
- }
- hs.push(hander)
- } else {
- hander(dict)
- }
- },
- ret = {
- applyDict: applyDict
- }
- export default ret
|