dict.js 361 B

1234567891011121314
  1. import axios from '@/utils/request';
  2. /**
  3. * 获取字典数据列表
  4. * @param {string} type - 字典类型
  5. * @returns {Promise} - 返回包含字典数据的Promise
  6. */
  7. export function getSimpleDictDataList(type) {
  8. return axios({
  9. url: "/system/dict-data/simple-list",
  10. method: 'get',
  11. data: type ? { dictType: type } : {},
  12. })
  13. }