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

This commit is contained in:
puhui999
2023-05-04 01:38:53 +08:00
parent 9ee35fc165
commit 0c6e3a39c9
6 changed files with 206 additions and 70 deletions

View File

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