diff --git a/src/components/animation/playing.vue b/src/components/animation/playing.vue index 03e9d87..026dc96 100644 --- a/src/components/animation/playing.vue +++ b/src/components/animation/playing.vue @@ -23,8 +23,8 @@ width: 20em; height: 20em; border: 1em solid transparent; - border-top-color: #3cefff; - border-bottom-color: #3cefff; + border-top-color: #7fe7c4; + border-bottom-color: #7fe7c4; border-radius: 50%; animation: spin 1.5s linear infinite; } @@ -35,7 +35,7 @@ margin: auto; width: 10em; height: 10em; - border: 1em solid #3cefff; + border: 1em solid #7fe7c4; border-radius: 50%; animation: pulse 1s alternate ease-in-out infinite; } diff --git a/src/views/chat/index.vue b/src/views/chat/index.vue index fa09ad6..f9e9452 100644 --- a/src/views/chat/index.vue +++ b/src/views/chat/index.vue @@ -109,7 +109,7 @@ const conversationList = computed(() => const prompt = ref('') const loading = ref(false) const inputRef = ref(null) -const nowStatus = ref('playing') // 当前系统状态, input等待, loding加载, record录音,playing播放 +const nowStatus = ref('input') // 当前系统状态, input等待, loding加载, record录音,playing播放 const nowStart = ref(true) // 当前是否有消息, 有才显示聊天记录 // 添加PromptStore