aigc-h5/src/views/assistant/index.vue

26 lines
913 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<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>