You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
302 B

7 months ago
  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;