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