This commit is contained in:
曹辉 2023-01-16 13:27:33 +08:00
parent b76079c769
commit 89d31d0392

View File

@ -49,4 +49,13 @@ export function delGoodsCategory(id) {
url: '/system/goodsCategory/' + id,
method: 'POST'
})
}
//不分页
export function getStationCategoryList(parentId) {
return request({
url: `/system/goodsCategory/getStationCategoryList?parentId=${parentId}`,
method: 'get'
})
}