184 lines
5.7 KiB
Vue
184 lines
5.7 KiB
Vue
<template>
|
||
<el-scrollbar>
|
||
<div class="upload-document p-24">
|
||
<!-- 基本信息 -->
|
||
<BaseForm ref="BaseFormRef" v-if="isCreate" />
|
||
<el-form
|
||
v-if="isCreate"
|
||
ref="webFormRef"
|
||
:rules="rules"
|
||
:model="form"
|
||
label-position="top"
|
||
require-asterisk-position="right"
|
||
>
|
||
<el-form-item label="知识库类型" required>
|
||
<el-radio-group v-model="form.type" class="card__radio" @change="radioChange">
|
||
<el-row :gutter="20">
|
||
<el-col :span="12">
|
||
<el-card shadow="never" class="mb-16" :class="form.type === '0' ? 'active' : ''">
|
||
<el-radio value="0" size="large">
|
||
<div class="flex align-center">
|
||
<AppAvatar class="mr-8" shape="square" :size="32">
|
||
<img src="@/assets/icon_document.svg" style="width: 58%" alt="" />
|
||
</AppAvatar>
|
||
<div>
|
||
<p class="mb-4">通用型</p>
|
||
<el-text type="info">可以通过上传文件或手动录入方式构建知识库</el-text>
|
||
</div>
|
||
</div>
|
||
</el-radio>
|
||
</el-card>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<el-card shadow="never" class="mb-16" :class="form.type === '1' ? 'active' : ''">
|
||
<el-radio value="1" size="large">
|
||
<div class="flex align-center">
|
||
<AppAvatar class="mr-8 avatar-purple" shape="square" :size="32">
|
||
<img src="@/assets/icon_web.svg" style="width: 58%" alt="" />
|
||
</AppAvatar>
|
||
<div>
|
||
<p class="mb-4">Web 站点</p>
|
||
<el-text type="info">通过网站链接同步方式构建知识库 </el-text>
|
||
</div>
|
||
</div>
|
||
</el-radio>
|
||
</el-card>
|
||
</el-col>
|
||
</el-row>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
<el-form-item label="Web 根地址" prop="source_url" v-if="form.type === '1'">
|
||
<el-input
|
||
v-model="form.source_url"
|
||
placeholder="请输入 Web 根地址"
|
||
@blur="form.source_url = form.source_url.trim()"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item label="选择器" v-if="form.type === '1'">
|
||
<el-input
|
||
v-model="form.selector"
|
||
placeholder="默认为 body,可输入 .classname/#idname/tagname"
|
||
@blur="form.selector = form.selector.trim()"
|
||
/>
|
||
</el-form-item>
|
||
</el-form>
|
||
|
||
<!-- 上传文档 -->
|
||
<UploadComponent ref="UploadComponentRef" v-if="form.type === '0'" />
|
||
</div>
|
||
</el-scrollbar>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import { ref, onMounted, reactive, watch } from 'vue'
|
||
import { useRouter, useRoute } from 'vue-router'
|
||
import BaseForm from '@/views/dataset/component/BaseForm.vue'
|
||
import UploadComponent from '@/views/dataset/component/UploadComponent.vue'
|
||
import { isAllPropertiesEmpty } from '@/utils/utils'
|
||
import datasetApi from '@/api/dataset'
|
||
import { MsgError, MsgSuccess } from '@/utils/message'
|
||
import useStore from '@/stores'
|
||
const { dataset } = useStore()
|
||
|
||
const route = useRoute()
|
||
const router = useRouter()
|
||
const {
|
||
params: { type }
|
||
} = route
|
||
const isCreate = type === 'create'
|
||
const BaseFormRef = ref()
|
||
const UploadComponentRef = ref()
|
||
const webFormRef = ref()
|
||
const loading = ref(false)
|
||
|
||
const form = ref<any>({
|
||
type: '0',
|
||
source_url: '',
|
||
selector: ''
|
||
})
|
||
|
||
const rules = reactive({
|
||
source_url: [{ required: true, message: '请输入 Web 根地址', trigger: 'blur' }]
|
||
})
|
||
|
||
watch(form.value, (value) => {
|
||
if (isAllPropertiesEmpty(value)) {
|
||
dataset.saveWebInfo(null)
|
||
} else {
|
||
dataset.saveWebInfo(value)
|
||
}
|
||
})
|
||
|
||
function radioChange() {
|
||
dataset.saveDocumentsFile([])
|
||
dataset.saveDocumentsType('')
|
||
form.value.source_url = ''
|
||
form.value.selector = ''
|
||
}
|
||
|
||
const onSubmit = async () => {
|
||
if (isCreate) {
|
||
if (form.value.type === '0') {
|
||
if ((await BaseFormRef.value?.validate()) && (await UploadComponentRef.value.validate())) {
|
||
if (UploadComponentRef.value.form.fileList.length > 50) {
|
||
MsgError('每次最多上传50个文件!')
|
||
return false
|
||
} else {
|
||
/*
|
||
stores保存数据
|
||
*/
|
||
dataset.saveBaseInfo(BaseFormRef.value.form)
|
||
dataset.saveDocumentsType(UploadComponentRef.value.form.fileType)
|
||
dataset.saveDocumentsFile(UploadComponentRef.value.form.fileList)
|
||
return true
|
||
}
|
||
} else {
|
||
return false
|
||
}
|
||
} else {
|
||
if (await BaseFormRef.value?.validate()) {
|
||
await webFormRef.value.validate((valid: any) => {
|
||
if (valid) {
|
||
const obj = { ...BaseFormRef.value.form, ...form.value }
|
||
datasetApi.postWebDataset(obj, loading).then((res) => {
|
||
MsgSuccess('提交成功')
|
||
dataset.saveBaseInfo(null)
|
||
dataset.saveWebInfo(null)
|
||
router.push({ path: `/dataset/${res.data.id}/document` })
|
||
})
|
||
} else {
|
||
return false
|
||
}
|
||
})
|
||
} else {
|
||
return false
|
||
}
|
||
}
|
||
} else {
|
||
if (await UploadComponentRef.value.validate()) {
|
||
/*
|
||
stores保存数据
|
||
*/
|
||
dataset.saveDocumentsType(UploadComponentRef.value.form.fileType)
|
||
dataset.saveDocumentsFile(UploadComponentRef.value.form.fileList)
|
||
return true
|
||
} else {
|
||
return false
|
||
}
|
||
}
|
||
}
|
||
|
||
onMounted(() => {})
|
||
|
||
defineExpose({
|
||
onSubmit,
|
||
loading
|
||
})
|
||
</script>
|
||
<style scoped lang="scss">
|
||
.upload-document {
|
||
width: 70%;
|
||
margin: 0 auto;
|
||
margin-bottom: 20px;
|
||
}
|
||
</style>
|