修改bug
parent
ad8ae50056
commit
0a66a007a2
|
|
@ -56,8 +56,9 @@ export const useChat = defineStore("chat-store", {
|
|||
|
||||
addChatByUuid(uuid, chat) {
|
||||
if (!uuid) {
|
||||
console.log(chat);
|
||||
const uuid = uuidv4()
|
||||
this.history.unshift({ id: uuid, title: '新的对话' })
|
||||
this.history.unshift({ id: uuid, title: chat.text })
|
||||
this.chat.push({ id: uuid, messages: [{ [chat.id]: chat }] })
|
||||
this.active = uuid
|
||||
}
|
||||
|
|
|
|||
|
|
@ -18,12 +18,12 @@
|
|||
<div class="mr-80px flex-1">
|
||||
<p>请留下您的信息</p>
|
||||
<p class="mt-10px">我们会尽快联系您!</p>
|
||||
<p class="mt-40px" v-if="website.info.contact_user_qrcode">了解更多,一键扫码咨询</p>
|
||||
<p class="mt-40px" v-if="website.info.web_footer_logo">了解更多,一键扫码咨询</p>
|
||||
</div>
|
||||
<div v-if="website.info.contact_user_qrcode" class="w-200px h-200px border flex-none mr-40px">
|
||||
<div v-if="website.info.web_footer_logo" class="w-200px h-200px border flex-none mr-40px">
|
||||
<img
|
||||
class="w-full h-full"
|
||||
:src="website.info.contact_user_qrcode"
|
||||
:src="website.info.web_footer_logo"
|
||||
alt=""
|
||||
srcset=""
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<div class="text-white pt-136px bg-[#101011]">
|
||||
<div class="text-45px font-light text-center">开启“智播”新纪元</div>
|
||||
<div class="mt-31px text-22px text-[#C2C5CA] leading-29px px-54px">
|
||||
一些相关的描述文字一些相关的描述文字一些相关的描述文字一些相关的描述文字一些相关的描述文字一些相关的描述文字一些相关的描述文字一些相关的描述文字一些相关的描述文字
|
||||
由海国图智研究院自主研发,运用最新的AI虚拟形象技术,结合语音识别、语义理解、语音合成、虚拟形象驱动等AI核心技术,实现用户与AI数智人之间的互动交流、业务资讯、智能问答、服务导览。
|
||||
</div>
|
||||
<div class="h-350px">
|
||||
<div class="mt-90px relative mx-42px">
|
||||
|
|
@ -66,10 +66,10 @@
|
|||
<div class="ml-54px">
|
||||
<div class="text-27px font-bold">短视频创作</div>
|
||||
<div class="mt-31px text-22px text-[#C2C5CA] leading-29px">
|
||||
<p>简单易懂操作:一个视频=1段文案+1个数字人+一键合成</p>
|
||||
<p>视频产出快速: 制作一个真人口播视频,最快仅需 1分钟</p>
|
||||
<p>随时随地修改:数字人视频,随时修改文本,随时生成</p>
|
||||
<p>虚拟人更加智能:一个数字人可更换不同语种、不同声线、不同情感音色</p>
|
||||
<p>简单易懂操作:一个视频=1段文案+1个数字人+一键合成</p>
|
||||
<p>视频产出快速::制作一个真人口播视频,最快仅需 1分钟</p>
|
||||
<p>随时随地修改:数字人视频,随时修改文本,随时生成</p>
|
||||
<p>虚拟人更加智能:一个数字人可更换不同语种、不同声线、不同情感音色</p>
|
||||
</div>
|
||||
<div class="mt-43px">
|
||||
<van-button
|
||||
|
|
@ -148,10 +148,10 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="px-42px py-30px">
|
||||
<div class="font-bold text-35px">互动娱乐</div>
|
||||
<div class="font-bold text-35px">智能交互</div>
|
||||
<div class="text-22px text-[#C2C5CA] mt-20px leading-30px">
|
||||
<p>更低成本、更精细的人设打造和IP孵化</p>
|
||||
<p>突破传统的交互方式,实现沉浸式游戏互动体验</p>
|
||||
<p>更低成本、更精准的人设打造和IP孵化</p>
|
||||
<p>突破传统的交互方式,实现沉浸式互动体验</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -50,9 +50,11 @@
|
|||
</div>
|
||||
<div
|
||||
:style="{ backgroundColor: current.color + 20 }"
|
||||
v-html="data.description_html"
|
||||
class="mt-20px bg-[#C1B9AF] py-24px px-20px text-[#695F56] h-248px text-31px"
|
||||
></div>
|
||||
|
||||
class="mt-20px bg-[#C1B9AF] py-24px px-20px text-[#695F56] h-248px leading-42px text-31px overflow-hidden overflow-y-auto"
|
||||
>
|
||||
<div v-html="data.description_html"></div>
|
||||
</div>
|
||||
<div
|
||||
class="grid gap-x-5 mt-40px"
|
||||
:class="[data.is_subscribe ? 'grid-cols-2' : 'grid-cols-1']"
|
||||
|
|
|
|||
Loading…
Reference in New Issue