26 lines
913 B
Vue
26 lines
913 B
Vue
<template>
|
||
<Layout path="/chat">
|
||
<div class="h-full flex flex-col justify-center text-white">
|
||
<div class="min-h-900px">
|
||
<TitleComp title="AI助理" :src="TitleSrc" />
|
||
<div class="mt-36px text-27px font-bold">CHATGPT接口AI助手</div>
|
||
<div class="text-22px mt-28px text-[#C2C5CA] leading-29px">
|
||
在AI助理板块,用户可以上传文件给AI翻阅并帮助您解决问题,您可以自己输入关键字或者使用自带的prompt模板
|
||
</div>
|
||
|
||
<div class="text-center">
|
||
<img
|
||
class="w-618px mx-auto"
|
||
src="@/assets/images/ai_assistant_02.png"
|
||
/>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</Layout>
|
||
</template>
|
||
<script setup>
|
||
import TitleComp from '@/views/home/components/title.vue'
|
||
import TitleSrc from '@/assets/images/AIASSISTANT.png'
|
||
import Layout from '@/views/home/components/layout.vue'
|
||
</script>
|