马小法
2021-09-14 b84e7013d23e0947bff4a3c4ce15fc6af6a8ad05
ruoyi-ui/src/api/system/dict/type.js
@@ -42,3 +42,28 @@
    method: 'delete'
  })
}
// 刷新字典缓存
export function refreshCache() {
  return request({
    url: '/system/dict/type/refreshCache',
    method: 'delete'
  })
}
// 导出字典类型
export function exportType(query) {
  return request({
    url: '/system/dict/type/export',
    method: 'get',
    params: query
  })
}
// 获取字典选择框列表
export function optionselect() {
  return request({
    url: '/system/dict/type/optionselect',
    method: 'get'
  })
}