feat: 支持FAQ Excel导入导出并优化管理端交互
- 新增 FAQ Excel 导入、导出、模板下载接口及导入结果 VO,支持按分类路径+问题 upsert 与逐行容错 - 模板增加填写说明与更宽列宽,导出列与模板保持一致 - 管理端新增导入弹窗与结果展示,FAQ 列表操作栏精简为"添加 + 更多操作"并去除多余外层框 - 修复导出前校验顺序,避免非 FAQ 知识库触发默认分类写入
This commit is contained in:
@@ -0,0 +1,411 @@
|
||||
<script setup lang="ts">
|
||||
import type { UploadFile } from 'element-plus';
|
||||
|
||||
import { computed, ref, watch } from 'vue';
|
||||
|
||||
import { $t } from '@easyflow/locales';
|
||||
import { downloadFileFromBlob } from '@easyflow/utils';
|
||||
import {
|
||||
CircleCloseFilled,
|
||||
Document,
|
||||
Download,
|
||||
SuccessFilled,
|
||||
Upload,
|
||||
UploadFilled,
|
||||
WarningFilled,
|
||||
} from '@element-plus/icons-vue';
|
||||
import {
|
||||
ElButton,
|
||||
ElDialog,
|
||||
ElIcon,
|
||||
ElMessage,
|
||||
ElTable,
|
||||
ElTableColumn,
|
||||
ElUpload,
|
||||
} from 'element-plus';
|
||||
|
||||
import { api } from '#/api/request';
|
||||
|
||||
const props = defineProps({
|
||||
modelValue: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
knowledgeId: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
});
|
||||
|
||||
const emit = defineEmits(['update:modelValue', 'success']);
|
||||
|
||||
const fileList = ref<any[]>([]);
|
||||
const currentFile = ref<File | null>(null);
|
||||
const submitLoading = ref(false);
|
||||
const downloadLoading = ref(false);
|
||||
const importResult = ref<any>(null);
|
||||
|
||||
const hasErrors = computed(() => (importResult.value?.errorCount || 0) > 0);
|
||||
const selectedFileName = computed(() => currentFile.value?.name || '');
|
||||
|
||||
watch(
|
||||
() => props.modelValue,
|
||||
(visible) => {
|
||||
if (!visible) {
|
||||
resetDialog();
|
||||
}
|
||||
},
|
||||
);
|
||||
|
||||
const closeDialog = () => {
|
||||
emit('update:modelValue', false);
|
||||
};
|
||||
|
||||
const resetDialog = () => {
|
||||
fileList.value = [];
|
||||
currentFile.value = null;
|
||||
submitLoading.value = false;
|
||||
downloadLoading.value = false;
|
||||
importResult.value = null;
|
||||
};
|
||||
|
||||
const onFileChange = (uploadFile: UploadFile) => {
|
||||
currentFile.value = uploadFile.raw || null;
|
||||
fileList.value = uploadFile.raw ? [uploadFile] : [];
|
||||
return false;
|
||||
};
|
||||
|
||||
const onFileRemove = () => {
|
||||
currentFile.value = null;
|
||||
};
|
||||
|
||||
const clearSelectedFile = () => {
|
||||
currentFile.value = null;
|
||||
fileList.value = [];
|
||||
};
|
||||
|
||||
const downloadTemplate = async () => {
|
||||
if (!props.knowledgeId) {
|
||||
ElMessage.warning($t('documentCollection.faq.collectionRequired'));
|
||||
return;
|
||||
}
|
||||
downloadLoading.value = true;
|
||||
try {
|
||||
const blob = await api.download(
|
||||
`/api/v1/faqItem/downloadImportTemplate?collectionId=${props.knowledgeId}`,
|
||||
);
|
||||
downloadFileFromBlob({
|
||||
fileName: 'faq_import_template.xlsx',
|
||||
source: blob,
|
||||
});
|
||||
} finally {
|
||||
downloadLoading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const handleImport = async () => {
|
||||
if (!currentFile.value) {
|
||||
ElMessage.warning($t('documentCollection.faq.import.selectFileRequired'));
|
||||
return;
|
||||
}
|
||||
const formData = new FormData();
|
||||
formData.append('file', currentFile.value);
|
||||
formData.append('collectionId', props.knowledgeId);
|
||||
submitLoading.value = true;
|
||||
try {
|
||||
const res = await api.postFile('/api/v1/faqItem/importExcel', formData, {
|
||||
timeout: 10 * 60 * 1000,
|
||||
});
|
||||
if (res.errorCode === 0) {
|
||||
importResult.value = res.data;
|
||||
ElMessage.success($t('documentCollection.faq.import.importFinished'));
|
||||
emit('success');
|
||||
}
|
||||
} finally {
|
||||
submitLoading.value = false;
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<ElDialog
|
||||
:model-value="modelValue"
|
||||
width="min(980px, 92vw)"
|
||||
:title="$t('documentCollection.faq.import.title')"
|
||||
:close-on-click-modal="true"
|
||||
@close="closeDialog"
|
||||
>
|
||||
<div class="faq-import-dialog">
|
||||
<ElUpload
|
||||
:file-list="fileList"
|
||||
drag
|
||||
action="#"
|
||||
accept=".xlsx,.xls"
|
||||
:auto-upload="false"
|
||||
:on-change="onFileChange"
|
||||
:on-remove="onFileRemove"
|
||||
:limit="1"
|
||||
:show-file-list="false"
|
||||
class="faq-upload-area"
|
||||
>
|
||||
<div class="upload-box flex flex-col items-center justify-center p-8 text-center">
|
||||
<ElIcon class="text-4xl text-gray-400 mb-4"><UploadFilled /></ElIcon>
|
||||
<div class="upload-title text-[15px] font-semibold text-[var(--el-text-color-primary)] mb-2">
|
||||
{{ $t('documentCollection.faq.import.uploadTitle') }}
|
||||
</div>
|
||||
<div class="upload-desc text-[13px] text-[var(--el-text-color-secondary)]">
|
||||
{{ $t('documentCollection.faq.import.uploadDesc') }}
|
||||
</div>
|
||||
</div>
|
||||
</ElUpload>
|
||||
|
||||
<div v-if="selectedFileName" class="selected-file-card">
|
||||
<div class="selected-file-main">
|
||||
<ElIcon class="selected-file-icon"><Document /></ElIcon>
|
||||
<div class="selected-file-name" :title="selectedFileName">
|
||||
{{ selectedFileName }}
|
||||
</div>
|
||||
</div>
|
||||
<ElButton
|
||||
link
|
||||
:icon="CircleCloseFilled"
|
||||
class="remove-file-btn"
|
||||
@click="clearSelectedFile"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div v-if="importResult" class="result-wrap">
|
||||
<div class="result-head">
|
||||
<div class="result-title-wrap">
|
||||
<ElIcon
|
||||
v-if="hasErrors"
|
||||
class="result-state-icon text-[var(--el-color-warning)]"
|
||||
>
|
||||
<WarningFilled />
|
||||
</ElIcon>
|
||||
<ElIcon v-else class="result-state-icon text-[var(--el-color-success)]">
|
||||
<SuccessFilled />
|
||||
</ElIcon>
|
||||
<span class="result-title-text">
|
||||
{{ $t('documentCollection.faq.import.resultTitle') }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="result-stats">
|
||||
<div class="stat-item">
|
||||
<div class="stat-label">{{ $t('documentCollection.faq.import.totalCount') }}</div>
|
||||
<div class="stat-value">{{ importResult.totalCount || 0 }}</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-label">{{ $t('documentCollection.faq.import.successCount') }}</div>
|
||||
<div class="stat-value success-text">{{ importResult.successCount || 0 }}</div>
|
||||
</div>
|
||||
<div class="stat-item">
|
||||
<div class="stat-label">{{ $t('documentCollection.faq.import.errorCount') }}</div>
|
||||
<div class="stat-value" :class="hasErrors ? 'danger-text' : ''">
|
||||
{{ importResult.errorCount || 0 }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ElTable
|
||||
v-if="hasErrors"
|
||||
:data="importResult.errorRows || []"
|
||||
size="small"
|
||||
class="result-error-table"
|
||||
>
|
||||
<ElTableColumn
|
||||
prop="rowNumber"
|
||||
:label="$t('documentCollection.faq.import.rowNumber')"
|
||||
width="100"
|
||||
/>
|
||||
<ElTableColumn
|
||||
prop="categoryPath"
|
||||
:label="$t('documentCollection.faq.categoryPath')"
|
||||
min-width="170"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<ElTableColumn
|
||||
prop="question"
|
||||
:label="$t('documentCollection.faq.question')"
|
||||
min-width="180"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
<ElTableColumn
|
||||
prop="reason"
|
||||
:label="$t('documentCollection.faq.import.reason')"
|
||||
min-width="220"
|
||||
show-overflow-tooltip
|
||||
/>
|
||||
</ElTable>
|
||||
</div>
|
||||
</div>
|
||||
<template #footer>
|
||||
<div class="action-row action-row-footer">
|
||||
<ElButton
|
||||
type="primary"
|
||||
plain
|
||||
:icon="Download"
|
||||
:disabled="downloadLoading"
|
||||
:loading="downloadLoading"
|
||||
@click="downloadTemplate"
|
||||
>
|
||||
{{ $t('documentCollection.faq.import.downloadTemplate') }}
|
||||
</ElButton>
|
||||
<ElButton
|
||||
type="primary"
|
||||
:icon="Upload"
|
||||
@click="handleImport"
|
||||
:loading="submitLoading"
|
||||
:disabled="submitLoading"
|
||||
>
|
||||
{{ $t('documentCollection.faq.import.startImport') }}
|
||||
</ElButton>
|
||||
</div>
|
||||
</template>
|
||||
</ElDialog>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.faq-import-dialog {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.selected-file-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
border: 1px solid var(--el-border-color-light);
|
||||
border-radius: 10px;
|
||||
background: var(--el-fill-color-blank);
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.selected-file-main {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
min-width: 0;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.selected-file-icon {
|
||||
color: var(--el-text-color-secondary);
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.selected-file-name {
|
||||
color: var(--el-text-color-primary);
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.remove-file-btn {
|
||||
color: var(--el-text-color-placeholder);
|
||||
}
|
||||
|
||||
.remove-file-btn:hover {
|
||||
color: var(--el-color-danger);
|
||||
}
|
||||
|
||||
.result-wrap {
|
||||
border: 1px solid var(--el-border-color-light);
|
||||
border-radius: 12px;
|
||||
padding: 14px;
|
||||
background: var(--el-fill-color-light);
|
||||
}
|
||||
|
||||
.result-head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.result-title-wrap {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.result-state-icon {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.result-title-text {
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: var(--el-text-color-primary);
|
||||
}
|
||||
|
||||
.result-stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
background: var(--el-fill-color-blank);
|
||||
border: 1px solid var(--el-border-color-lighter);
|
||||
border-radius: 8px;
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
color: var(--el-text-color-secondary);
|
||||
font-size: 12px;
|
||||
line-height: 1;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
color: var(--el-text-color-primary);
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.success-text {
|
||||
color: var(--el-color-success);
|
||||
}
|
||||
|
||||
.danger-text {
|
||||
color: var(--el-color-danger);
|
||||
}
|
||||
|
||||
.result-error-table {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.action-row {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.action-row-footer {
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
:deep(.faq-upload-area .el-upload-dragger) {
|
||||
padding: 0;
|
||||
border-radius: 10px;
|
||||
background-color: var(--el-fill-color-blank);
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
:deep(.faq-upload-area .el-upload-dragger:hover) {
|
||||
border-color: var(--el-color-primary);
|
||||
background-color: var(--el-color-primary-light-9);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.result-stats {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user