This commit is contained in:
parent
c4ce860e6a
commit
ec2cfe4b19
|
@ -23,8 +23,8 @@
|
||||||
width: 20em;
|
width: 20em;
|
||||||
height: 20em;
|
height: 20em;
|
||||||
border: 1em solid transparent;
|
border: 1em solid transparent;
|
||||||
border-top-color: #3cefff;
|
border-top-color: #7fe7c4;
|
||||||
border-bottom-color: #3cefff;
|
border-bottom-color: #7fe7c4;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
animation: spin 1.5s linear infinite;
|
animation: spin 1.5s linear infinite;
|
||||||
}
|
}
|
||||||
|
@ -35,7 +35,7 @@
|
||||||
margin: auto;
|
margin: auto;
|
||||||
width: 10em;
|
width: 10em;
|
||||||
height: 10em;
|
height: 10em;
|
||||||
border: 1em solid #3cefff;
|
border: 1em solid #7fe7c4;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
animation: pulse 1s alternate ease-in-out infinite;
|
animation: pulse 1s alternate ease-in-out infinite;
|
||||||
}
|
}
|
||||||
|
|
|
@ -109,7 +109,7 @@ const conversationList = computed(() =>
|
||||||
const prompt = ref<string>('')
|
const prompt = ref<string>('')
|
||||||
const loading = ref<boolean>(false)
|
const loading = ref<boolean>(false)
|
||||||
const inputRef = ref<Ref | null>(null)
|
const inputRef = ref<Ref | null>(null)
|
||||||
const nowStatus = ref('playing') // 当前系统状态, input等待, loding加载, record录音,playing播放
|
const nowStatus = ref('input') // 当前系统状态, input等待, loding加载, record录音,playing播放
|
||||||
const nowStart = ref(true) // 当前是否有消息, 有才显示聊天记录
|
const nowStart = ref(true) // 当前是否有消息, 有才显示聊天记录
|
||||||
|
|
||||||
// 添加PromptStore
|
// 添加PromptStore
|
||||||
|
|
Loading…
Reference in New Issue