|
@@ -777,14 +777,14 @@ export default defineComponent({
|
|
|
<img src={iconFire} class={styles.iconFire} />
|
|
|
{formatUsedNum(item.usedNum)}
|
|
|
</span>
|
|
|
- {item.audioPlayTypes.includes('PLAY') && (
|
|
|
+ {item.audioPlayTypes?.includes('PLAY') && (
|
|
|
<span
|
|
|
class={[styles.iconPlayType, styles.iconPlay]}>
|
|
|
演奏
|
|
|
</span>
|
|
|
)}
|
|
|
|
|
|
- {item.audioPlayTypes.includes('SING') && (
|
|
|
+ {item.audioPlayTypes?.includes('SING') && (
|
|
|
<span
|
|
|
class={[styles.iconPlayType, styles.iconSing]}>
|
|
|
演唱
|