|
|
@@ -0,0 +1,33 @@
|
|
|
+<template>
|
|
|
+ <document-cards :data="data" :hasUpload="true" />
|
|
|
+</template>
|
|
|
+<script>
|
|
|
+import DocumentCards from "@/components/DocumentCards.vue";
|
|
|
+import { defineComponent, ref, inject, reactive } from "vue";
|
|
|
+export default defineComponent({
|
|
|
+ components: {
|
|
|
+ DocumentCards
|
|
|
+ },
|
|
|
+ setup() {
|
|
|
+ const data = ref([
|
|
|
+ {
|
|
|
+ background: "rgba(72, 177, 244, 0.06)",
|
|
|
+ color: "rgb(72, 177, 244)",
|
|
|
+ img: "/src/assets/gen/5.png",
|
|
|
+ title: "上传图片",
|
|
|
+ content: "支持支持PNG,JPG等格式图片,大小在10M以内"
|
|
|
+ },
|
|
|
+ {
|
|
|
+ background: "rgba(158, 128, 255, 0.06)",
|
|
|
+ color: "rgb(158, 128, 255)",
|
|
|
+ img: "/src/assets/gen/6.png",
|
|
|
+ title: "多轮问答",
|
|
|
+ content: "基于图片内容,实现的多轮问答"
|
|
|
+ }
|
|
|
+ ]);
|
|
|
+ return {
|
|
|
+ data
|
|
|
+ };
|
|
|
+ }
|
|
|
+});
|
|
|
+</script>
|