修复:开发测试问题修改

This commit is contained in:
2025-11-28 10:48:41 +08:00
parent 435a23f995
commit 85ca0c7a28
19 changed files with 144 additions and 146 deletions

View File

@@ -33,6 +33,8 @@ const productImg = computed(() => {
return props.data?.images || ''
case 'vip':
return '/static/vip.png'
case 'abroadVip':
return '/static/vip.png'
case 'point':
return '/static/jifen.png'
default:
@@ -47,6 +49,8 @@ const title = computed(() => {
return props.data?.name || ''
case 'vip':
return props.data?.title + '<text style="color: #ff4703; font-weight: bold;">(' + props.data?.year + '年)</text>' || ''
case 'abroadVip':
return '电子书VIP' + props.data?.title + '<text style="color: #ff4703; font-weight: bold;">(' + props.data?.days + '天)</text>' || ''
case 'point':
return ''
default:
@@ -61,6 +65,8 @@ const price = computed(() => {
return props.data?.abroadPrice || 0
case 'vip':
return props.data?.fee || 0
case 'abroadVip':
return props.data?.money || 0
case 'point':
return ''
default: