style: 添加VO

(cherry picked from commit c5a7d05821)
This commit is contained in:
dhb52
2023-06-01 18:08:23 +08:00
committed by shizhong
parent b28bfc4081
commit e2faf6a2a4
5 changed files with 801 additions and 1 deletions

View File

@ -88,3 +88,8 @@ export const deleteSpu = (id: number) => {
export const exportSpu = async (params) => {
return await request.download({ url: '/product/spu/export', params })
}
// 获得商品 SPU 精简列表
export const getSpuSimpleList = async () => {
return request.get({ url: '/product/spu/get-simple-list' })
}