2023-10-27 09:49:06 +00:00
|
|
|
|
<template>
|
2023-11-02 10:25:09 +00:00
|
|
|
|
<h4 class="title-decoration-1 mb-8">上传文档</h4>
|
2023-11-22 09:04:47 +00:00
|
|
|
|
<el-form
|
|
|
|
|
|
ref="FormRef"
|
|
|
|
|
|
:model="form"
|
|
|
|
|
|
:rules="rules"
|
|
|
|
|
|
label-position="top"
|
|
|
|
|
|
require-asterisk-position="right"
|
|
|
|
|
|
>
|
2023-11-02 01:56:14 +00:00
|
|
|
|
<el-form-item prop="fileList">
|
2023-10-27 09:49:06 +00:00
|
|
|
|
<el-upload
|
|
|
|
|
|
class="w-full"
|
|
|
|
|
|
drag
|
|
|
|
|
|
multiple
|
2023-11-02 01:56:14 +00:00
|
|
|
|
v-model:file-list="form.fileList"
|
|
|
|
|
|
action="#"
|
|
|
|
|
|
:auto-upload="false"
|
2023-11-06 11:06:02 +00:00
|
|
|
|
:show-file-list="false"
|
2024-03-29 10:28:05 +00:00
|
|
|
|
accept=".txt, .md, .csv, .log, .doc, .docx, .pdf"
|
2024-03-04 08:37:30 +00:00
|
|
|
|
:limit="50"
|
2024-03-01 07:58:47 +00:00
|
|
|
|
:on-exceed="onExceed"
|
2023-10-27 09:49:06 +00:00
|
|
|
|
>
|
2023-11-06 11:06:02 +00:00
|
|
|
|
<img src="@/assets/upload-icon.svg" alt="" />
|
2023-10-27 09:49:06 +00:00
|
|
|
|
<div class="el-upload__text">
|
|
|
|
|
|
<p>
|
2023-11-06 11:06:02 +00:00
|
|
|
|
将文件拖拽至此区域或
|
|
|
|
|
|
<em> 选择文件上传 </em>
|
2023-10-27 09:49:06 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
<div class="upload__decoration">
|
2023-11-06 11:06:02 +00:00
|
|
|
|
<p>支持格式:TXT、Markdown,每次最多上传50个文件,每个文件不超过 10MB</p>
|
|
|
|
|
|
<p>若使用【高级分段】建议上传前规范文件的分段标识</p>
|
2023-10-27 09:49:06 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
2023-11-06 11:06:02 +00:00
|
|
|
|
<el-row :gutter="8" v-if="form.fileList?.length">
|
|
|
|
|
|
<template v-for="(item, index) in form.fileList" :key="index">
|
|
|
|
|
|
<el-col :span="12" class="mb-8">
|
|
|
|
|
|
<el-card shadow="never" class="file-List-card">
|
|
|
|
|
|
<div class="flex-between">
|
|
|
|
|
|
<div class="flex">
|
|
|
|
|
|
<img :src="getImgUrl(item && item?.name)" alt="" />
|
|
|
|
|
|
<div class="ml-8">
|
|
|
|
|
|
<p>{{ item && item?.name }}</p>
|
2024-01-30 08:44:26 +00:00
|
|
|
|
<el-text type="info">{{ filesize(item && item?.size) || '0K' }}</el-text>
|
2023-11-06 11:06:02 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<el-button text @click="deleteFlie(index)">
|
|
|
|
|
|
<el-icon><Delete /></el-icon>
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-row>
|
2023-10-27 09:49:06 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
2024-01-08 09:53:50 +00:00
|
|
|
|
import { ref, reactive, onUnmounted, onMounted, computed, watch } from 'vue'
|
2023-11-06 11:06:02 +00:00
|
|
|
|
import type { UploadProps } from 'element-plus'
|
|
|
|
|
|
import { filesize, getImgUrl } from '@/utils/utils'
|
|
|
|
|
|
import { MsgError } from '@/utils/message'
|
2023-11-10 09:18:00 +00:00
|
|
|
|
import useStore from '@/stores'
|
|
|
|
|
|
const { dataset } = useStore()
|
|
|
|
|
|
const documentsFiles = computed(() => dataset.documentsFiles)
|
|
|
|
|
|
const form = ref({
|
2023-11-06 11:06:02 +00:00
|
|
|
|
fileList: [] as any
|
2023-10-27 09:49:06 +00:00
|
|
|
|
})
|
|
|
|
|
|
|
2023-11-02 01:56:14 +00:00
|
|
|
|
const rules = reactive({
|
|
|
|
|
|
fileList: [{ required: true, message: '请上传文件', trigger: 'change' }]
|
|
|
|
|
|
})
|
2023-10-27 09:49:06 +00:00
|
|
|
|
const FormRef = ref()
|
|
|
|
|
|
|
2024-01-08 09:53:50 +00:00
|
|
|
|
watch(form.value, (value) => {
|
|
|
|
|
|
dataset.saveDocumentsFile(value.fileList)
|
|
|
|
|
|
})
|
2023-11-06 11:06:02 +00:00
|
|
|
|
function deleteFlie(index: number) {
|
2023-11-10 09:18:00 +00:00
|
|
|
|
form.value.fileList.splice(index, 1)
|
2023-11-06 11:06:02 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
2024-03-01 07:58:47 +00:00
|
|
|
|
const onExceed = () => {
|
|
|
|
|
|
MsgError('每次最多上传50个文件')
|
|
|
|
|
|
}
|
2023-11-22 03:05:06 +00:00
|
|
|
|
/*
|
|
|
|
|
|
表单校验
|
|
|
|
|
|
*/
|
2023-10-27 09:49:06 +00:00
|
|
|
|
function validate() {
|
|
|
|
|
|
if (!FormRef.value) return
|
2023-11-02 01:56:14 +00:00
|
|
|
|
return FormRef.value.validate((valid: any) => {
|
2023-10-27 09:49:06 +00:00
|
|
|
|
return valid
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
2024-03-01 07:58:47 +00:00
|
|
|
|
|
2023-11-10 09:18:00 +00:00
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
if (documentsFiles.value) {
|
|
|
|
|
|
form.value.fileList = documentsFiles.value
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2023-11-14 10:12:55 +00:00
|
|
|
|
onUnmounted(() => {
|
|
|
|
|
|
form.value = {
|
|
|
|
|
|
fileList: []
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
2023-10-27 09:49:06 +00:00
|
|
|
|
|
|
|
|
|
|
defineExpose({
|
2023-11-02 01:56:14 +00:00
|
|
|
|
validate,
|
|
|
|
|
|
form
|
2023-10-27 09:49:06 +00:00
|
|
|
|
})
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.upload__decoration {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
|
color: var(--el-text-color-secondary);
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|