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

View File

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