dict.js 325 B

12345678910111213141516
  1. /**
  2. * 系统字典 API
  3. * @author steelwei
  4. */
  5. import request from '@/utils/request'
  6. /**
  7. * 根据字典类型获取字典数据
  8. * @param {string} dictType 字典类型
  9. */
  10. export function getDictDataByType(dictType) {
  11. return request({
  12. url: `/system/dict/data/type/${dictType}`,
  13. method: 'GET'
  14. })
  15. }