mall-uniapp/sheep/api/category.js

11 lines
160 B
JavaScript
Raw Normal View History

2022-11-22 07:45:36 +00:00
import request from '@/sheep/request';
export default {
list: (params) =>
request({
url: 'category',
method: 'GET',
params,
}),
};