Blame view

src/api/dict.js 1.37 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * @Description: 字典接口
 * @Autor: renchao
 * @LastEditTime: 2023-05-16 16:06:51
 */
import request from '@/utils/request'
let SERVER = window.config ? window.config : JSON.parse(localStorage.getItem('ApiUrl'))


/**
 * @description: 获取全部字典数据
 * @author: renchao
 */
export function getAllDict () {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getAllDict',
    method: 'post'
  })
}
yuanbo committed
20 21 22 23 24
/**
 * @description: getQlxxDictList
 * @param {*} data
 * @author: renchao
 */
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
export function getQlxxDictList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getQlxxDictList',
    method: 'post',
    data
  })
}

/**
 * @description: 获取字典子级列表
 * @param {*} bsmDict
 * @author: renchao
 */
export function getChildDictList (bsmDict) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getChildDictList',
    method: 'get',
    params: {
      bsmDict: bsmDict
    }
  })
}

/**
 * @description: 编辑字典数据
 * @param {*} data
 * @author: renchao
 */
export function editDictNode (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/editDictNode',
    method: 'post',
    data
  })
}


/**
 * @description: 刷新字典缓存
 * @author: renchao
 */
export function refreshDictCache () {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/refreshDictCache',
    method: 'get'
  })
}