商品管理: 打通所有接口(第一版)

(cherry picked from commit 0c6e3a39c9)
This commit is contained in:
puhui999
2023-05-04 01:38:53 +08:00
committed by shizhong
parent 263ca68ff1
commit b9fd7b7753
6 changed files with 206 additions and 70 deletions

View File

@ -216,3 +216,20 @@ export const PayRefundStatusEnum = {
name: '退款关闭'
}
}
/**
* 商品SPU枚举类
*/
export const ProductSpuStatusEnum = {
RECYCLE: {
status: -1,
name: '回收站'
},
DISABLE: {
status: 0,
name: '下架'
},
ENABLE: {
status: 1,
name: '上架'
}
}