diff --git a/src/pages-aigc/record/components/RecordCard/index.vue b/src/pages-aigc/record/components/RecordCard/index.vue index 37b011c..2507824 100644 --- a/src/pages-aigc/record/components/RecordCard/index.vue +++ b/src/pages-aigc/record/components/RecordCard/index.vue @@ -72,7 +72,7 @@ const isVideoRecord = computed(() => { const statusText = computed(() => { const generatorType = props.record.generatorType; const taskStatus = props.record.taskStatus; - const generatorCost = props.record.generatorCost; + const generatorCost = normalizedTaskStatus.value === 3 ? 0 : props.record.generatorCost; const typeText = GENERATOR_TYPE_TEXT[generatorType] || (generatorType === undefined ? "" : `类型${generatorType}`); const stateText =