Skip to content

Commit

Permalink
fix: 修复sound_popup音频props错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
sctop committed Feb 2, 2025
1 parent 996f6bf commit 3aaa3ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/scenario/DialogueCmdEntry.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ function queryBg(id: number): string {
class="scenario-bg-img" />
<br />
<DialogueCmdEntryAudio
:audio-display-name="i18nSound[currSiteLang][dataEntry.Payload.Data[1]] || dataEntry.Payload.Data[1]"
:audio-src="`${getStaticCdnBasepath('static')}/ba/Audio_Sound/${dataEntry.Payload.Data[1].toLowerCase()}.wav`"
:audio-display-name="i18nSound[currSiteLang][dataEntry.Payload.Data[0]] || dataEntry.Payload.Data[0]"
:audio-src="`${getStaticCdnBasepath('static')}/ba/Audio_Sound/${dataEntry.Payload.Data[0].toLowerCase()}.wav`"
:audio-loop-start="0"
:audio-loop-end="999999" />
</template>
Expand Down

0 comments on commit 3aaa3ea

Please sign in to comment.