BUG: 如果是文本会话消息没有audioPath时跳过自动播放

This commit is contained in:
fan 2023-02-10 10:04:05 +08:00
parent 4323ed274e
commit 80687fd3f0

View File

@ -146,8 +146,13 @@ export default {
playAllAudio() {
this.$nextTick(function() {
this.currentMessage = this.currentAudioList.shift();
console.log(this.currentMessage, '************');
if (this.currentMessage.type === 'Text') {
return;
}
document.querySelector('#audioPlay').src = this.currentMessage.audioPath;
document.querySelector('#audioPlay').play();
console.log(document.querySelector('#audioPlay'), '--------------');
this.$set(this.currentMessage, 'activeAuto', true);
this.play = true;
document.querySelector('#audioPlay').onended = () => {