wms-antdvue/.svn/pristine/26/2664c4aee8ea1aa2eb8c030b4b26392780e845be.svn-base
2024-11-07 16:33:03 +08:00

11 lines
191 B
Plaintext

import { http } from '@/utils/http/axios';
//获取分类
export function getClassifyList(params?) {
return http.request({
url: '/classifyList',
method: 'get',
params,
});
}