订单类型增加

This commit is contained in:
lyp 2025-03-04 17:36:49 +08:00
parent 4fe4aa1e6b
commit 5463deb923

View File

@ -212,6 +212,12 @@ export default function MyOrder() {
if (record.productType === 'CORRECTION2_REFUND') { if (record.productType === 'CORRECTION2_REFUND') {
return '补正2次退款' return '补正2次退款'
} }
if (record.productType === 'PROJ_PKG') {
return '安装包'
}
if (record.productType === 'PROJ_VIDEO') {
return '演示视频'
}
return record.productType return record.productType
} }