diff --git a/src/components/animation/inputing.vue b/src/components/animation/inputing.vue index bd832ba..e8876d7 100644 --- a/src/components/animation/inputing.vue +++ b/src/components/animation/inputing.vue @@ -26,7 +26,7 @@ .dots > div { width: 4em; height: 4em; - background-color: #3cefff; + background-color: #7fe7c4; border-radius: 50%; animation: fade 1.5s alternate ease-in-out infinite; } diff --git a/src/components/animation/loding.vue b/src/components/animation/loding.vue index 3ccf5c8..92e060a 100644 --- a/src/components/animation/loding.vue +++ b/src/components/animation/loding.vue @@ -19,7 +19,7 @@ div::before { left: -3px; width: 20em; height: 20em; - background-color: hsla(185, 100%, 62%, 0.75); + background-color: hsla(185, 65%, 58%, 0.75); transform-origin: center bottom; transform: scaleY(1); animation: fill 3s linear infinite; diff --git a/src/components/animation/lodingSpin.vue b/src/components/animation/lodingSpin.vue index 776d2af..e48b9ae 100644 --- a/src/components/animation/lodingSpin.vue +++ b/src/components/animation/lodingSpin.vue @@ -25,8 +25,8 @@ .middle, .inner { border: 3px solid transparent; - border-top-color: #3cefff; - border-right-color: #3cefff; + border-top-color: #7fe7c4; + border-right-color: #7fe7c4; border-radius: 50%; position: absolute; top: 50%; diff --git a/src/components/animation/recording.vue b/src/components/animation/recording.vue index 34e196d..63bef33 100644 --- a/src/components/animation/recording.vue +++ b/src/components/animation/recording.vue @@ -19,7 +19,7 @@ span { width: 3em; height: 6em; - background-color: #3cefff; + background-color: #7fe7c4; } span:nth-of-type(1) { diff --git a/src/views/chat/components/Message/index.vue b/src/views/chat/components/Message/index.vue index 2bce64e..e107333 100644 --- a/src/views/chat/components/Message/index.vue +++ b/src/views/chat/components/Message/index.vue @@ -21,6 +21,7 @@ interface Props { interface Emit { (ev: 'regenerate'): void (ev: 'delete'): void + (ev: 'changeNowStatus'): string } const props = defineProps() @@ -97,6 +98,7 @@ let sok = false async function radioPlay() { console.log('播放', props.mp3) audioElements.length = 0 + emit('changeNowStatus', 'loding') const socket = new WebSocket('wss://chat.lihaink.cn/zhanti/tts') sok = true @@ -166,8 +168,12 @@ const onAudioEnd = (index: any) => { if (playing < audioElements.length) { playFlag = true audioElements[playing].play() + emit('changeNowStatus', 'playing') } - else { playStatus.value = 'end' } + else { + playStatus.value = 'end'; + emit('changeNowStatus', 'input') + } } // 创建音频对象的数组 const audioElements = reactive([]) @@ -175,6 +181,7 @@ const audioElements = reactive([]) const playAudio = (playIndex: any) => { // for (let i = 0; i < audioElements.length; i++) audioElements[0].play() + emit('changeNowStatus', 'playing') } watch(() => audioElements.length, (newVal, oldVal) => { @@ -191,11 +198,13 @@ let pauseIndex = -1 const pauseAudio = () => { pauseIndex = playing + 0 playStatus.value = 'pause' + emit('changeNowStatus', 'input') for (let i = 0; i < audioElements.length; i++) audioElements[i].pause() } const noPauseAudio = () => { playStatus.value = 'playing' + emit('changeNowStatus', 'playing') audioElements[pauseIndex].play() pauseIndex = -1 } diff --git a/src/views/chat/index.vue b/src/views/chat/index.vue index fc01929..fd7bbde 100644 --- a/src/views/chat/index.vue +++ b/src/views/chat/index.vue @@ -218,7 +218,7 @@ async function onConversation() { // console.log(`收到消息: `, msg.payload.choices.text[0].content); // console.log(`当前消息: `, dataSources.value[dataSources.value.length - 1].text); lastText += msg.payload.choices.text[0].content - const loading = true + const loading = false nowStart.value = false updateChat( +uuid, @@ -588,6 +588,18 @@ const footerClass = computed(() => { return classes }) +// 改变状态 +const changeNowStatus = (e:any)=>{ + console.log('收到数据',e); + if(e!=nowStatus.value){ + switch(e){ + case 'playing': nowStatus.value = 'record';break; + case 'loding': nowStatus.value = 'loding';break; + default: nowStatus.value = 'input';break; + } + } +} + onMounted(() => { scrollToBottom() if (inputRef.value && !isMobile.value) @@ -606,9 +618,9 @@ window.addEventListener('test', (e) => { prompt.value = window.winText }) -// setTimeout(() => { -// nowStart.value = false -// }, 800) +setTimeout(() => { + nowStart.value = false +}, 800)