wujingjing
2025-04-07 457cc6cf166d3b6c22be4f78c1db8802a7fbb4c7
src/components/chat/components/playBar/hook/useDigitalHuman.ts
@@ -23,6 +23,7 @@
   // 是否已接口相应
   const isReceiveRes = ref(false);
   const humanIsLoading = ref(true);
   const digitalHumanIsShow = ref(false);
   const closeDigitalHuman = () => {
@@ -31,6 +32,7 @@
   };
   const resetDuixStatus = () => {
      humanIsLoading.value = true;
      isReceiveRes.value = false;
      // isSpeaking.value = false;
      digitalHumanIsShow.value = false;
@@ -46,7 +48,6 @@
         }
         return acc + mdText;
      }, '');
      console.log('🚀 ~ knowledgeText:', knowledgeText);
      // const conclusionText =
      //    item.conclusion
      //       ?.filter((item) => !!item.report)
@@ -82,6 +83,7 @@
      });
      duix.on('show', () => {
         console.info('show');
         humanIsLoading.value = false;
         // 此时可确认视频已
         // (document.querySelector('#modal') as HTMLElement).style.display = 'none';
      });
@@ -222,5 +224,6 @@
      openDigitalHuman,
      isHumanTalking: isReceiveRes,
      closeDigitalHuman,
      humanIsLoading,
   };
};