dict.js 318 B

12345678910111213141516
  1. import request from '@/sheep/request';
  2. const DictApi = {
  3. // 根据字典类型查询字典数据信息
  4. getDictDataListByType: (type) => {
  5. return request({
  6. url: `/system/dict-data/type`,
  7. method: 'GET',
  8. params: {
  9. type,
  10. },
  11. });
  12. },
  13. };
  14. export default DictApi;