style: 添加VO

This commit is contained in:
dhb52
2023-06-01 18:08:23 +08:00
parent c3b0403ade
commit c5a7d05821
5 changed files with 64 additions and 18 deletions

View File

@ -221,6 +221,24 @@ export const PayRefundStatusEnum = {
}
}
/**
* 商品 SPU 状态
*/
export const ProductSpuStatusEnum = {
RECYCLE: {
status: -1,
name: '回收站'
},
DISABLE: {
status: 0,
name: '下架'
},
ENABLE: {
status: 1,
name: '上架'
}
}
/**
* 优惠劵模板的有限期类型的枚举
*/