dict.js 1.39 KB
/*
 * @Description  :字典模块api文件
 * @Autor        : miaofang
 * @LastEditTime : 2023-05-17 10:25:38
 */
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'
  })
}
/**
 * @description: 获取字典类型列表
 * @param {*} data
 * @author: renchao
 */
export function getQlxxDictList (data) {
  return request({
    url: SERVER.SERVERAPI + '/rest/sys/dict/getDictList',
    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'
  })
}