Files
peiwan-uniapp/sheep/api/system/dict.js

17 lines
302 B
JavaScript
Raw Normal View History

2025-01-21 01:46:34 +08:00
import request from '@/sheep/request';
const DictApi = {
// 根据字典类型查询字典数据信息
getDictDataListByType: (type) => {
return request({
url: `/system/dict-data/type`,
method: 'GET',
params: {
type,
},
});
},
};
export default DictApi;