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

25 lines
1.2 KiB
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="/business">
<div class="h-full flex flex-col justify-center text-white">
<TitleComp title="AI商情" :src="TitleSrc">
<template #en>
<img class="h-104px w-auto" :src="TitleSrc" alt="" srcset="" />
</template>
</TitleComp>
<div class="mt-36px text-27px font-bold">AI商情预测</div>
<div class="text-22px mt-28px text-[#C2C5CA] leading-29px">
在AI助理板块用户可以上传文件给AI翻阅并帮助您解决问题您可以自己输入关键字或者使用自带的prompt模板在AI助理板块用户可以上传文件给AI翻阅并帮助您解决问题您可以自己输入关键字或者使用自带的prompt模
</div>
<div class="mt-61px">
<img class="w-658px mx-auto inline-block" src="@/assets/images/ai_busionessinfomation_01.png" />
</div>
</div>
</Layout>
</template>
<script setup>
import TitleComp from '@/views/home/components/title.vue'
import TitleSrc from '@/assets/images/AIBUSINESSINFORMATION.png'
import Layout from '@/views/home/components/layout.vue'
</script>