2026-07-10 16:45:55 +08:00
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { computed, nextTick, onBeforeUnmount, onMounted, reactive, ref, watch } from 'vue'
|
|
|
|
|
|
import { onBeforeRouteLeave, useRouter } from 'vue-router'
|
2026-07-11 14:49:10 +08:00
|
|
|
|
import { ElMessage, type UploadFile } from 'element-plus'
|
2026-07-13 11:47:33 +08:00
|
|
|
|
import { storeToRefs } from 'pinia'
|
2026-07-11 14:49:10 +08:00
|
|
|
|
import AppConfirmDialog from '@/components/AppConfirmDialog.vue'
|
2026-07-10 16:45:55 +08:00
|
|
|
|
import TaskSetupStep from './create/TaskSetupStep.vue'
|
2026-07-13 17:12:49 +08:00
|
|
|
|
import ModelSelectionStep from './create/ModelSelectionStep.vue'
|
2026-07-12 15:39:43 +08:00
|
|
|
|
import SourceUploadStep from './create/SourceUploadStep.vue'
|
2026-07-10 16:45:55 +08:00
|
|
|
|
import PreviewCompareStep from './create/PreviewCompareStep.vue'
|
|
|
|
|
|
import GenerationStep from './create/GenerationStep.vue'
|
|
|
|
|
|
import ResultEditorStep from './create/ResultEditorStep.vue'
|
2026-07-13 15:28:48 +08:00
|
|
|
|
import { buildPreviewItems, DEFAULT_SOURCE_TEXT } from './create/previewModel'
|
|
|
|
|
|
import {
|
|
|
|
|
|
createDefaultStructuredOptions,
|
|
|
|
|
|
createDefaultUnstructuredOptions,
|
|
|
|
|
|
} from './create/dataProcessCreateState'
|
|
|
|
|
|
import {
|
|
|
|
|
|
DATA_PROCESS_DRAFT_STORAGE_KEY,
|
|
|
|
|
|
useDataProcessDraft,
|
|
|
|
|
|
} from './create/useDataProcessDraft'
|
|
|
|
|
|
import { useDataProcessGeneration } from './create/useDataProcessGeneration'
|
2026-07-13 11:47:33 +08:00
|
|
|
|
import { useModelsStore } from '@/stores/models'
|
2026-07-11 14:49:10 +08:00
|
|
|
|
import type {
|
|
|
|
|
|
ExternalDataSource,
|
2026-07-13 17:12:49 +08:00
|
|
|
|
GenerationControlOptions,
|
2026-07-11 14:49:10 +08:00
|
|
|
|
PreviewItem,
|
|
|
|
|
|
ProcessType,
|
|
|
|
|
|
StepId,
|
|
|
|
|
|
StructuredProcessOptions,
|
|
|
|
|
|
UnstructuredProcessOptions,
|
2026-07-13 15:28:48 +08:00
|
|
|
|
UploadedDataFile,
|
2026-07-11 14:49:10 +08:00
|
|
|
|
} from './create/types'
|
2026-07-10 16:45:55 +08:00
|
|
|
|
|
|
|
|
|
|
const router = useRouter()
|
2026-07-13 11:47:33 +08:00
|
|
|
|
const modelsStore = useModelsStore()
|
|
|
|
|
|
const { list: modelList } = storeToRefs(modelsStore)
|
|
|
|
|
|
const generationModels = computed(() => modelList.value.filter((model) => model.type === 'LLM'))
|
2026-07-10 16:45:55 +08:00
|
|
|
|
const taskSetupRef = ref<InstanceType<typeof TaskSetupStep>>()
|
2026-07-13 17:12:49 +08:00
|
|
|
|
const modelSelectionRef = ref<InstanceType<typeof ModelSelectionStep>>()
|
2026-07-11 14:49:10 +08:00
|
|
|
|
const confirmDialogRef = ref<InstanceType<typeof AppConfirmDialog>>()
|
|
|
|
|
|
const PREVIEW_MODEL_VERSION = 'document-chunk-v2'
|
2026-07-10 16:45:55 +08:00
|
|
|
|
|
|
|
|
|
|
const WIZARD_STEPS = [
|
2026-07-12 15:39:43 +08:00
|
|
|
|
{ id: 'create', title: '创建任务', desc: '填写任务信息与处理配置' },
|
2026-07-13 17:12:49 +08:00
|
|
|
|
{ id: 'model', title: '大模型选择', desc: '选择生成模型并设置输出要求' },
|
2026-07-12 15:39:43 +08:00
|
|
|
|
{ id: 'upload', title: '上传文件', desc: '上传或接入待处理的源数据' },
|
2026-07-10 16:45:55 +08:00
|
|
|
|
{ id: 'preview', title: '数据预览', desc: '核对源文件与预览内容' },
|
|
|
|
|
|
{ id: 'generate', title: '开始生成', desc: '确认摘要并启动处理' },
|
2026-07-16 09:36:39 +08:00
|
|
|
|
{ id: 'results', title: '结果编辑与保存', desc: '检查、修改并保存结果' },
|
2026-07-10 16:45:55 +08:00
|
|
|
|
] as const satisfies ReadonlyArray<{ id: StepId; title: string; desc: string }>
|
|
|
|
|
|
const currentStep = ref(0)
|
|
|
|
|
|
const currentStepId = computed<StepId>(() => WIZARD_STEPS[currentStep.value]?.id ?? 'create')
|
|
|
|
|
|
const task = reactive({ name: '', description: '' })
|
2026-07-13 16:41:42 +08:00
|
|
|
|
const processType = ref<ProcessType>('structured')
|
2026-07-13 15:28:48 +08:00
|
|
|
|
const structuredOptions = ref<StructuredProcessOptions>(createDefaultStructuredOptions())
|
|
|
|
|
|
const unstructuredOptions = ref<UnstructuredProcessOptions>(createDefaultUnstructuredOptions())
|
2026-07-13 17:12:49 +08:00
|
|
|
|
const modelSelectionOptions = computed<GenerationControlOptions>(() => (
|
|
|
|
|
|
processType.value === 'unstructured' ? unstructuredOptions.value : structuredOptions.value
|
|
|
|
|
|
))
|
2026-07-10 16:45:55 +08:00
|
|
|
|
const uploadedFiles = ref<UploadedDataFile[]>([])
|
|
|
|
|
|
|
2026-07-11 11:00:15 +08:00
|
|
|
|
const externalSource = reactive<ExternalDataSource>({
|
|
|
|
|
|
type: 'mysql',
|
|
|
|
|
|
url: '',
|
|
|
|
|
|
authMode: 'none',
|
|
|
|
|
|
username: '',
|
|
|
|
|
|
password: '',
|
|
|
|
|
|
token: '',
|
|
|
|
|
|
limit: 1000,
|
|
|
|
|
|
})
|
|
|
|
|
|
const externalPulling = ref(false)
|
|
|
|
|
|
const externalConnected = ref(false)
|
2026-07-13 15:28:48 +08:00
|
|
|
|
let connectionTimer: ReturnType<typeof setTimeout> | null = null
|
|
|
|
|
|
let pullTimer: ReturnType<typeof setTimeout> | null = null
|
2026-07-11 11:00:15 +08:00
|
|
|
|
|
2026-07-10 16:45:55 +08:00
|
|
|
|
const fileName = computed(() => uploadedFiles.value.map(f => f.name).join(', '))
|
|
|
|
|
|
const previewSignature = ref('')
|
|
|
|
|
|
const previewItems = ref<PreviewItem[]>([])
|
|
|
|
|
|
const selectedPreviewFileId = ref<string | null>(null)
|
|
|
|
|
|
const selectedPreviewId = ref<string | null>(null)
|
|
|
|
|
|
const selectedPreviewIdsByFile = ref<Record<string, string>>({})
|
|
|
|
|
|
const dirty = ref(false)
|
|
|
|
|
|
const restoringDraft = ref(false)
|
|
|
|
|
|
let allowLeave = false
|
|
|
|
|
|
|
2026-07-13 15:28:48 +08:00
|
|
|
|
const {
|
|
|
|
|
|
generation,
|
|
|
|
|
|
results,
|
|
|
|
|
|
selectedResultId,
|
|
|
|
|
|
resetDownstream,
|
|
|
|
|
|
restoreResult,
|
|
|
|
|
|
startGeneration,
|
|
|
|
|
|
stopGeneration,
|
|
|
|
|
|
stopGenerationTimer,
|
|
|
|
|
|
updateResultField,
|
|
|
|
|
|
validateResults,
|
|
|
|
|
|
} = useDataProcessGeneration({
|
|
|
|
|
|
previewItems,
|
|
|
|
|
|
processType,
|
|
|
|
|
|
structuredOptions,
|
|
|
|
|
|
unstructuredOptions,
|
|
|
|
|
|
dirty,
|
2026-07-10 16:45:55 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const modifiedPreviewCount = computed(() => previewItems.value.filter((item) => item.status !== 'original').length)
|
2026-07-13 15:28:48 +08:00
|
|
|
|
const previewItemsByFile = computed(() => {
|
|
|
|
|
|
const grouped = new Map<string, PreviewItem[]>()
|
|
|
|
|
|
for (const item of previewItems.value) {
|
|
|
|
|
|
const items = grouped.get(item.sourceFileId) || []
|
|
|
|
|
|
items.push(item)
|
|
|
|
|
|
grouped.set(item.sourceFileId, items)
|
|
|
|
|
|
}
|
|
|
|
|
|
return grouped
|
|
|
|
|
|
})
|
2026-07-10 16:45:55 +08:00
|
|
|
|
const activePreviewFile = computed(() => uploadedFiles.value.find((file) => String(file.uid) === selectedPreviewFileId.value))
|
2026-07-13 15:28:48 +08:00
|
|
|
|
const activePreviewItems = computed(() => previewItemsByFile.value.get(selectedPreviewFileId.value || '') || [])
|
2026-07-10 16:45:55 +08:00
|
|
|
|
const activeSourceText = computed(() => activePreviewFile.value?.content ?? '')
|
|
|
|
|
|
const previewFiles = computed(() => uploadedFiles.value.map((file) => {
|
2026-07-13 15:28:48 +08:00
|
|
|
|
const items = previewItemsByFile.value.get(String(file.uid)) || []
|
2026-07-10 16:45:55 +08:00
|
|
|
|
return {
|
|
|
|
|
|
id: String(file.uid),
|
|
|
|
|
|
name: file.name,
|
|
|
|
|
|
count: items.length,
|
|
|
|
|
|
modifiedCount: items.filter((item) => item.status !== 'original').length,
|
|
|
|
|
|
}
|
|
|
|
|
|
}))
|
|
|
|
|
|
const primaryActionLabel = computed(() => {
|
2026-07-13 17:12:49 +08:00
|
|
|
|
if (currentStepId.value === 'create') return '继续:选择大模型'
|
|
|
|
|
|
if (currentStepId.value === 'model') return '继续:上传文件'
|
2026-07-12 15:39:43 +08:00
|
|
|
|
if (currentStepId.value === 'upload') return '继续:数据预览'
|
2026-07-10 16:45:55 +08:00
|
|
|
|
if (currentStepId.value === 'preview') return '确认预览并继续'
|
|
|
|
|
|
if (currentStepId.value === 'results') return '保存任务'
|
|
|
|
|
|
if (generation.status === 'running') return '正在生成'
|
|
|
|
|
|
if (generation.status === 'success') return '查看生成结果'
|
|
|
|
|
|
if (generation.status === 'failed') return '重新生成'
|
|
|
|
|
|
return '开始生成'
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const primaryActionIcon = computed(() => {
|
|
|
|
|
|
if (currentStepId.value === 'results') return 'fa-check'
|
|
|
|
|
|
if (currentStepId.value === 'generate' && generation.status !== 'success') return 'fa-play'
|
|
|
|
|
|
return 'fa-arrow-right'
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const previousStepLabel = computed(() => currentStep.value > 0
|
|
|
|
|
|
? WIZARD_STEPS[currentStep.value - 1].title
|
|
|
|
|
|
: '')
|
|
|
|
|
|
|
2026-07-12 15:39:43 +08:00
|
|
|
|
function goToStep(stepId: StepId) {
|
|
|
|
|
|
const nextStepIndex = WIZARD_STEPS.findIndex((step) => step.id === stepId)
|
|
|
|
|
|
if (nextStepIndex >= 0) currentStep.value = nextStepIndex
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-13 17:12:49 +08:00
|
|
|
|
function updateModelSelectionOptions(value: GenerationControlOptions) {
|
|
|
|
|
|
if (processType.value === 'unstructured') {
|
|
|
|
|
|
unstructuredOptions.value = { ...unstructuredOptions.value, ...value }
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
structuredOptions.value = { ...structuredOptions.value, ...value }
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-13 15:28:48 +08:00
|
|
|
|
const { persistDraft, restoreDraft } = useDataProcessDraft({
|
|
|
|
|
|
currentStepId,
|
|
|
|
|
|
task,
|
|
|
|
|
|
processType,
|
|
|
|
|
|
structuredOptions,
|
|
|
|
|
|
unstructuredOptions,
|
|
|
|
|
|
externalSource,
|
|
|
|
|
|
restoringDraft,
|
|
|
|
|
|
dirty,
|
|
|
|
|
|
goToStep,
|
|
|
|
|
|
})
|
2026-07-10 16:45:55 +08:00
|
|
|
|
|
2026-07-11 14:49:10 +08:00
|
|
|
|
function previewAffectingOptions() {
|
|
|
|
|
|
if (processType.value === 'structured') {
|
|
|
|
|
|
return {
|
|
|
|
|
|
preprocessOptions: structuredOptions.value.preprocessOptions,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
if (processType.value === 'unstructured') {
|
|
|
|
|
|
const {
|
|
|
|
|
|
preprocessOptions,
|
|
|
|
|
|
chunkMethod,
|
|
|
|
|
|
chunkSize,
|
|
|
|
|
|
chunkOverlap,
|
|
|
|
|
|
minChunkSize,
|
|
|
|
|
|
customDelimiter,
|
|
|
|
|
|
preserveTables,
|
|
|
|
|
|
preserveCodeBlocks,
|
|
|
|
|
|
preserveLists,
|
|
|
|
|
|
} = unstructuredOptions.value
|
|
|
|
|
|
return {
|
|
|
|
|
|
preprocessOptions,
|
|
|
|
|
|
chunkMethod,
|
|
|
|
|
|
chunkSize,
|
|
|
|
|
|
chunkOverlap,
|
|
|
|
|
|
minChunkSize,
|
|
|
|
|
|
customDelimiter: chunkMethod === 'custom' ? customDelimiter : '',
|
|
|
|
|
|
preserveTables,
|
|
|
|
|
|
preserveCodeBlocks,
|
|
|
|
|
|
preserveLists,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return null
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function generationAffectingOptions() {
|
|
|
|
|
|
if (processType.value === 'structured') {
|
2026-07-13 11:47:33 +08:00
|
|
|
|
const {
|
|
|
|
|
|
semanticEnrichment, qaPairsPerRow, datasetSplit, generationModelId, generationPrompt,
|
|
|
|
|
|
temperature, maxTokens, jsonMode,
|
|
|
|
|
|
qualityFilterEnabled, filterLowQuality, filterShortContent, minOutputLength,
|
|
|
|
|
|
} = structuredOptions.value
|
|
|
|
|
|
return {
|
|
|
|
|
|
semanticEnrichment, qaPairsPerRow, datasetSplit, generationModelId, generationPrompt,
|
|
|
|
|
|
temperature, maxTokens, jsonMode,
|
|
|
|
|
|
qualityFilterEnabled, filterLowQuality, filterShortContent, minOutputLength,
|
|
|
|
|
|
}
|
2026-07-11 14:49:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
if (processType.value === 'unstructured') {
|
|
|
|
|
|
const {
|
|
|
|
|
|
semanticEnrichment,
|
|
|
|
|
|
qaPairsPerChunk,
|
|
|
|
|
|
datasetSplit,
|
2026-07-13 11:47:33 +08:00
|
|
|
|
generationModelId,
|
|
|
|
|
|
generationPrompt,
|
|
|
|
|
|
temperature,
|
|
|
|
|
|
maxTokens,
|
|
|
|
|
|
jsonMode,
|
|
|
|
|
|
qualityFilterEnabled,
|
|
|
|
|
|
filterLowQuality,
|
|
|
|
|
|
filterShortContent,
|
|
|
|
|
|
minOutputLength,
|
2026-07-11 14:49:10 +08:00
|
|
|
|
} = unstructuredOptions.value
|
|
|
|
|
|
return {
|
|
|
|
|
|
semanticEnrichment,
|
|
|
|
|
|
qaPairsPerChunk,
|
|
|
|
|
|
datasetSplit,
|
2026-07-13 11:47:33 +08:00
|
|
|
|
generationModelId,
|
|
|
|
|
|
generationPrompt,
|
|
|
|
|
|
temperature,
|
|
|
|
|
|
maxTokens,
|
|
|
|
|
|
jsonMode,
|
|
|
|
|
|
qualityFilterEnabled,
|
|
|
|
|
|
filterLowQuality,
|
|
|
|
|
|
filterShortContent,
|
|
|
|
|
|
minOutputLength,
|
2026-07-11 14:49:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return null
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const generationOptionsSignature = computed(() => JSON.stringify(generationAffectingOptions()))
|
|
|
|
|
|
|
|
|
|
|
|
function buildPreviewSignature() {
|
|
|
|
|
|
const filesSignature = uploadedFiles.value
|
2026-07-13 15:28:48 +08:00
|
|
|
|
.map((file) => `${file.uid}:${file.name}:${file.size}:${file.count}`)
|
2026-07-11 14:49:10 +08:00
|
|
|
|
.join('|')
|
|
|
|
|
|
return `${PREVIEW_MODEL_VERSION}:${processType.value}:${JSON.stringify(previewAffectingOptions())}:${filesSignature}`
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-10 16:45:55 +08:00
|
|
|
|
watch(
|
2026-07-11 14:49:10 +08:00
|
|
|
|
[() => task.name, () => task.description, processType, structuredOptions, unstructuredOptions, externalSource],
|
2026-07-10 16:45:55 +08:00
|
|
|
|
() => {
|
|
|
|
|
|
if (!restoringDraft.value) dirty.value = true
|
|
|
|
|
|
},
|
2026-07-11 11:00:15 +08:00
|
|
|
|
{ deep: true },
|
2026-07-10 16:45:55 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
2026-07-12 15:39:43 +08:00
|
|
|
|
watch(processType, (nextType, previousType) => {
|
|
|
|
|
|
if (restoringDraft.value || nextType === previousType || uploadedFiles.value.length === 0) return
|
|
|
|
|
|
resetSourceDataForProcessTypeChange()
|
|
|
|
|
|
ElMessage.info('处理类型已变更,请重新上传或拉取匹配的源数据')
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2026-07-11 14:49:10 +08:00
|
|
|
|
watch(generationOptionsSignature, (currentSignature, previousSignature) => {
|
|
|
|
|
|
if (restoringDraft.value || currentSignature === previousSignature) return
|
|
|
|
|
|
resetDownstream()
|
|
|
|
|
|
})
|
|
|
|
|
|
|
2026-07-10 16:45:55 +08:00
|
|
|
|
watch(
|
2026-07-13 15:28:48 +08:00
|
|
|
|
[task, processType, structuredOptions, unstructuredOptions, externalSource],
|
2026-07-10 16:45:55 +08:00
|
|
|
|
persistDraft,
|
|
|
|
|
|
{ deep: true },
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
function scrollToStepTop() {
|
|
|
|
|
|
document.querySelector<HTMLElement>('.layout-content')?.scrollTo({ top: 0, behavior: 'smooth' })
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
watch(currentStep, () => nextTick(scrollToStepTop))
|
|
|
|
|
|
|
|
|
|
|
|
async function handleFileChange(uploadFile: UploadFile) {
|
|
|
|
|
|
const raw = uploadFile.raw
|
|
|
|
|
|
if (!raw) return
|
|
|
|
|
|
if (raw.size > 200 * 1024 * 1024) {
|
|
|
|
|
|
ElMessage.warning('单文件不能超过 200MB')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const extension = raw.name.split('.').pop()?.toLowerCase() ?? ''
|
|
|
|
|
|
const textExtensions = ['txt', 'md', 'json', 'jsonl', 'csv']
|
|
|
|
|
|
let content = ''
|
|
|
|
|
|
if (textExtensions.includes(extension)) {
|
|
|
|
|
|
try {
|
|
|
|
|
|
content = await raw.text()
|
|
|
|
|
|
} catch {
|
|
|
|
|
|
content = ''
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const fileContent = content.trim() ? content : DEFAULT_SOURCE_TEXT
|
|
|
|
|
|
const linesCount = fileContent.split('\n').filter((line) => line.trim()).length
|
|
|
|
|
|
|
|
|
|
|
|
// Prevent duplicate upload of the same file
|
|
|
|
|
|
if (!uploadedFiles.value.some(f => f.name === raw.name && f.size === raw.size)) {
|
|
|
|
|
|
uploadedFiles.value.push({
|
|
|
|
|
|
uid: uploadFile.uid || Date.now() + Math.random(),
|
|
|
|
|
|
name: raw.name,
|
|
|
|
|
|
size: raw.size,
|
|
|
|
|
|
count: linesCount,
|
|
|
|
|
|
content: fileContent
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function useSampleFile() {
|
|
|
|
|
|
uploadedFiles.value = [{
|
|
|
|
|
|
uid: 'sample-1',
|
|
|
|
|
|
name: 'finance_qa.jsonl',
|
|
|
|
|
|
size: 128 * 1024 * 1024,
|
|
|
|
|
|
count: DEFAULT_SOURCE_TEXT.split('\n').filter((line) => line.trim()).length,
|
|
|
|
|
|
content: DEFAULT_SOURCE_TEXT
|
|
|
|
|
|
}]
|
|
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-11 11:00:15 +08:00
|
|
|
|
function updateExternalSource(value: ExternalDataSource) {
|
|
|
|
|
|
Object.assign(externalSource, value)
|
|
|
|
|
|
externalConnected.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleTestConnection() {
|
|
|
|
|
|
if (!externalSource.url.trim()) {
|
|
|
|
|
|
ElMessage.warning('请先填写数据源地址')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-13 15:28:48 +08:00
|
|
|
|
if (connectionTimer) clearTimeout(connectionTimer)
|
2026-07-11 11:00:15 +08:00
|
|
|
|
externalPulling.value = true
|
2026-07-13 15:28:48 +08:00
|
|
|
|
connectionTimer = setTimeout(() => {
|
|
|
|
|
|
connectionTimer = null
|
2026-07-11 11:00:15 +08:00
|
|
|
|
externalPulling.value = false
|
|
|
|
|
|
externalConnected.value = true
|
|
|
|
|
|
ElMessage.success('数据源连接测试成功')
|
|
|
|
|
|
}, 1500)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handlePullData() {
|
|
|
|
|
|
if (!externalSource.url.trim()) {
|
|
|
|
|
|
ElMessage.warning('请先填写数据源地址')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-13 15:28:48 +08:00
|
|
|
|
if (pullTimer) clearTimeout(pullTimer)
|
2026-07-11 11:00:15 +08:00
|
|
|
|
externalPulling.value = true
|
2026-07-13 15:28:48 +08:00
|
|
|
|
pullTimer = setTimeout(() => {
|
|
|
|
|
|
pullTimer = null
|
2026-07-11 11:00:15 +08:00
|
|
|
|
externalPulling.value = false
|
|
|
|
|
|
externalConnected.value = true
|
|
|
|
|
|
const typeName = externalSource.type.toUpperCase()
|
|
|
|
|
|
const id = `external-${Date.now()}`
|
|
|
|
|
|
uploadedFiles.value.push({
|
|
|
|
|
|
uid: id,
|
|
|
|
|
|
name: `${typeName} 拉取数据 ${new Date().toLocaleString('zh-CN')}`,
|
|
|
|
|
|
size: Math.min(externalSource.limit, 5000) * 64,
|
|
|
|
|
|
count: Math.min(externalSource.limit, DEFAULT_SOURCE_TEXT.split('\n').filter((line) => line.trim()).length),
|
|
|
|
|
|
content: DEFAULT_SOURCE_TEXT,
|
|
|
|
|
|
})
|
|
|
|
|
|
dirty.value = true
|
|
|
|
|
|
ElMessage.success(`已成功拉取 ${uploadedFiles.value[uploadedFiles.value.length - 1].count.toLocaleString()} 条数据`)
|
|
|
|
|
|
}, 2000)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-10 16:45:55 +08:00
|
|
|
|
function handleRemoveFile(uid: string | number) {
|
|
|
|
|
|
const index = uploadedFiles.value.findIndex(f => f.uid === uid)
|
|
|
|
|
|
if (index > -1) {
|
|
|
|
|
|
uploadedFiles.value.splice(index, 1)
|
|
|
|
|
|
previewSignature.value = ''
|
|
|
|
|
|
previewItems.value = []
|
|
|
|
|
|
selectedPreviewId.value = null
|
|
|
|
|
|
resetDownstream()
|
|
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-12 15:39:43 +08:00
|
|
|
|
function resetSourceDataForProcessTypeChange() {
|
|
|
|
|
|
uploadedFiles.value = []
|
|
|
|
|
|
previewSignature.value = ''
|
|
|
|
|
|
previewItems.value = []
|
|
|
|
|
|
selectedPreviewFileId.value = null
|
|
|
|
|
|
selectedPreviewId.value = null
|
|
|
|
|
|
selectedPreviewIdsByFile.value = {}
|
|
|
|
|
|
externalConnected.value = false
|
|
|
|
|
|
resetDownstream()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-10 16:45:55 +08:00
|
|
|
|
async function nextFromCreate() {
|
|
|
|
|
|
const valid = await taskSetupRef.value?.validate()
|
|
|
|
|
|
if (!valid) return
|
2026-07-13 17:12:49 +08:00
|
|
|
|
goToStep('model')
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function nextFromModel() {
|
|
|
|
|
|
const valid = await modelSelectionRef.value?.validate()
|
|
|
|
|
|
if (!valid) return
|
2026-07-12 15:39:43 +08:00
|
|
|
|
goToStep('upload')
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function nextFromUpload() {
|
2026-07-10 16:45:55 +08:00
|
|
|
|
if (uploadedFiles.value.length === 0) {
|
2026-07-11 11:00:15 +08:00
|
|
|
|
ElMessage.warning(processType.value === 'external' ? '请先拉取至少一个数据源' : '请上传至少一个源数据文件')
|
2026-07-10 16:45:55 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-11 14:49:10 +08:00
|
|
|
|
const signature = buildPreviewSignature()
|
2026-07-10 16:45:55 +08:00
|
|
|
|
if (signature !== previewSignature.value) {
|
|
|
|
|
|
previewItems.value = uploadedFiles.value.flatMap((file) =>
|
2026-07-11 14:49:10 +08:00
|
|
|
|
buildPreviewItems(
|
|
|
|
|
|
file.content,
|
|
|
|
|
|
processType.value,
|
|
|
|
|
|
String(file.uid),
|
|
|
|
|
|
processType.value === 'unstructured' ? unstructuredOptions.value : undefined,
|
|
|
|
|
|
),
|
2026-07-10 16:45:55 +08:00
|
|
|
|
)
|
|
|
|
|
|
selectedPreviewFileId.value = String(uploadedFiles.value[0]?.uid ?? '') || null
|
|
|
|
|
|
selectedPreviewId.value = activePreviewItems.value[0]?.id ?? null
|
|
|
|
|
|
selectedPreviewIdsByFile.value = selectedPreviewId.value && selectedPreviewFileId.value
|
|
|
|
|
|
? { [selectedPreviewFileId.value]: selectedPreviewId.value }
|
|
|
|
|
|
: {}
|
|
|
|
|
|
previewSignature.value = signature
|
|
|
|
|
|
resetDownstream()
|
|
|
|
|
|
}
|
2026-07-12 15:39:43 +08:00
|
|
|
|
goToStep('preview')
|
2026-07-10 16:45:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function selectPreviewFile(fileId: string) {
|
|
|
|
|
|
if (selectedPreviewFileId.value && selectedPreviewId.value) {
|
|
|
|
|
|
selectedPreviewIdsByFile.value[selectedPreviewFileId.value] = selectedPreviewId.value
|
|
|
|
|
|
}
|
|
|
|
|
|
selectedPreviewFileId.value = fileId
|
|
|
|
|
|
selectedPreviewId.value = selectedPreviewIdsByFile.value[fileId]
|
|
|
|
|
|
|| activePreviewItems.value[0]?.id
|
|
|
|
|
|
|| null
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function selectPreviewItem(id: string) {
|
|
|
|
|
|
selectedPreviewId.value = id
|
|
|
|
|
|
if (selectedPreviewFileId.value) selectedPreviewIdsByFile.value[selectedPreviewFileId.value] = id
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function updatePreviewContent(id: string, value: string) {
|
|
|
|
|
|
const item = previewItems.value.find((entry) => entry.id === id)
|
|
|
|
|
|
if (!item) return
|
|
|
|
|
|
item.editedContent = value
|
|
|
|
|
|
item.tokenCount = Math.max(1, Math.ceil(value.length / 2))
|
|
|
|
|
|
item.status = value === item.originalContent ? 'original' : item.sourceStart == null ? 'manual' : 'modified'
|
2026-07-11 14:49:10 +08:00
|
|
|
|
resetDownstream()
|
2026-07-10 16:45:55 +08:00
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function restorePreviewItem(id: string) {
|
|
|
|
|
|
const item = previewItems.value.find((entry) => entry.id === id)
|
|
|
|
|
|
if (!item || item.sourceStart == null) return
|
|
|
|
|
|
item.editedContent = item.originalContent
|
|
|
|
|
|
item.tokenCount = Math.max(1, Math.ceil(item.originalContent.length / 2))
|
|
|
|
|
|
item.status = 'original'
|
2026-07-11 14:49:10 +08:00
|
|
|
|
resetDownstream()
|
2026-07-10 16:45:55 +08:00
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function addPreviewItem() {
|
|
|
|
|
|
if (!selectedPreviewFileId.value) return
|
|
|
|
|
|
const id = `manual-${Date.now()}`
|
|
|
|
|
|
previewItems.value.push({
|
|
|
|
|
|
id,
|
|
|
|
|
|
sourceFileId: selectedPreviewFileId.value,
|
|
|
|
|
|
originalContent: '',
|
|
|
|
|
|
editedContent: '',
|
|
|
|
|
|
sourceStart: null,
|
|
|
|
|
|
sourceEnd: null,
|
|
|
|
|
|
sourceStartLine: null,
|
|
|
|
|
|
sourceEndLine: null,
|
|
|
|
|
|
tokenCount: 1,
|
|
|
|
|
|
status: 'manual',
|
|
|
|
|
|
})
|
|
|
|
|
|
selectPreviewItem(id)
|
2026-07-11 14:49:10 +08:00
|
|
|
|
resetDownstream()
|
2026-07-10 16:45:55 +08:00
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function removePreviewItem(id: string) {
|
2026-07-11 14:49:10 +08:00
|
|
|
|
const confirmed = await confirmDialogRef.value?.open({
|
|
|
|
|
|
title: '删除预览内容?',
|
|
|
|
|
|
message: '删除只影响本次处理,不会修改源文件。删除后可重新从源文件生成预览。',
|
|
|
|
|
|
confirmText: '删除',
|
|
|
|
|
|
cancelText: '取消',
|
|
|
|
|
|
tone: 'danger',
|
|
|
|
|
|
})
|
|
|
|
|
|
if (!confirmed) return
|
2026-07-10 16:45:55 +08:00
|
|
|
|
|
|
|
|
|
|
const index = previewItems.value.findIndex((item) => item.id === id)
|
|
|
|
|
|
if (index < 0) return
|
|
|
|
|
|
previewItems.value.splice(index, 1)
|
|
|
|
|
|
selectedPreviewId.value = activePreviewItems.value[Math.min(index, activePreviewItems.value.length - 1)]?.id ?? null
|
|
|
|
|
|
if (selectedPreviewFileId.value && selectedPreviewId.value) {
|
|
|
|
|
|
selectedPreviewIdsByFile.value[selectedPreviewFileId.value] = selectedPreviewId.value
|
|
|
|
|
|
}
|
2026-07-11 14:49:10 +08:00
|
|
|
|
resetDownstream()
|
2026-07-10 16:45:55 +08:00
|
|
|
|
dirty.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function handlePrimaryAction() {
|
|
|
|
|
|
if (currentStepId.value === 'create') {
|
|
|
|
|
|
await nextFromCreate()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-13 17:12:49 +08:00
|
|
|
|
if (currentStepId.value === 'model') {
|
|
|
|
|
|
await nextFromModel()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-12 15:39:43 +08:00
|
|
|
|
if (currentStepId.value === 'upload') {
|
|
|
|
|
|
nextFromUpload()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-10 16:45:55 +08:00
|
|
|
|
if (currentStepId.value === 'preview') {
|
|
|
|
|
|
if (!previewItems.value.length) {
|
|
|
|
|
|
ElMessage.warning('当前没有可生成的预览内容')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-12 15:39:43 +08:00
|
|
|
|
goToStep('generate')
|
2026-07-10 16:45:55 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if (currentStepId.value === 'generate') {
|
|
|
|
|
|
if (generation.status === 'success') {
|
2026-07-12 15:39:43 +08:00
|
|
|
|
goToStep('results')
|
2026-07-10 16:45:55 +08:00
|
|
|
|
} else if (generation.status !== 'running') {
|
|
|
|
|
|
startGeneration()
|
|
|
|
|
|
}
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
await saveTask()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function handleBack() {
|
|
|
|
|
|
if (generation.status === 'running') {
|
|
|
|
|
|
ElMessage.warning('请先停止当前生成任务')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if (currentStep.value > 0) currentStep.value -= 1
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async function saveTask() {
|
|
|
|
|
|
if (!validateResults()) {
|
|
|
|
|
|
ElMessage.warning('请先修正校验失败的结果')
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
dirty.value = false
|
2026-07-13 15:28:48 +08:00
|
|
|
|
localStorage.removeItem(DATA_PROCESS_DRAFT_STORAGE_KEY)
|
2026-07-10 16:45:55 +08:00
|
|
|
|
allowLeave = true
|
|
|
|
|
|
ElMessage.success('数据处理任务已保存')
|
|
|
|
|
|
await router.push('/data-process')
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
async function handleCancel() {
|
|
|
|
|
|
if (!dirty.value) {
|
|
|
|
|
|
allowLeave = true
|
|
|
|
|
|
router.back()
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-07-11 14:49:10 +08:00
|
|
|
|
const confirmed = await confirmDialogRef.value?.open({
|
|
|
|
|
|
title: '确认离开当前页面?',
|
|
|
|
|
|
message: '当前存在未保存修改,离开后这些修改将不会保留。',
|
|
|
|
|
|
confirmText: '放弃修改',
|
|
|
|
|
|
cancelText: '继续编辑',
|
|
|
|
|
|
tone: 'danger',
|
|
|
|
|
|
})
|
|
|
|
|
|
if (!confirmed) return
|
|
|
|
|
|
allowLeave = true
|
|
|
|
|
|
router.back()
|
2026-07-10 16:45:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-07-11 14:49:10 +08:00
|
|
|
|
onBeforeRouteLeave(async () => {
|
|
|
|
|
|
if (allowLeave || !dirty.value) return true
|
|
|
|
|
|
const confirmed = await confirmDialogRef.value?.open({
|
|
|
|
|
|
title: '确认离开当前页面?',
|
|
|
|
|
|
message: '当前存在未保存修改,离开后这些修改将不会保留。',
|
|
|
|
|
|
confirmText: '放弃修改',
|
|
|
|
|
|
cancelText: '继续编辑',
|
|
|
|
|
|
tone: 'danger',
|
|
|
|
|
|
})
|
|
|
|
|
|
if (confirmed) allowLeave = true
|
|
|
|
|
|
return Boolean(confirmed)
|
2026-07-10 16:45:55 +08:00
|
|
|
|
})
|
|
|
|
|
|
|
2026-07-13 15:28:48 +08:00
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
|
|
stopGenerationTimer()
|
|
|
|
|
|
if (connectionTimer) clearTimeout(connectionTimer)
|
|
|
|
|
|
if (pullTimer) clearTimeout(pullTimer)
|
|
|
|
|
|
})
|
2026-07-13 11:47:33 +08:00
|
|
|
|
onMounted(() => {
|
|
|
|
|
|
restoreDraft()
|
|
|
|
|
|
modelsStore.load()
|
|
|
|
|
|
})
|
2026-07-10 16:45:55 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
|
<div class="create-wizard-layout">
|
|
|
|
|
|
<main class="wizard-main">
|
|
|
|
|
|
<div class="wizard-main-inner">
|
|
|
|
|
|
<div class="wizard-steps-container">
|
|
|
|
|
|
<div class="custom-wizard-steps">
|
2026-07-13 17:12:49 +08:00
|
|
|
|
<template v-for="(step, index) in WIZARD_STEPS" :key="step.id">
|
|
|
|
|
|
<div
|
|
|
|
|
|
v-if="index !== 0"
|
|
|
|
|
|
class="step-connector"
|
|
|
|
|
|
:class="{ 'is-active': currentStep >= index }"
|
|
|
|
|
|
></div>
|
|
|
|
|
|
<div
|
|
|
|
|
|
class="step-item"
|
|
|
|
|
|
:class="{
|
|
|
|
|
|
'is-active': currentStep === index,
|
|
|
|
|
|
'is-completed': currentStep > index
|
|
|
|
|
|
}"
|
|
|
|
|
|
:aria-current="currentStep === index ? 'step' : undefined"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div class="step-node">
|
|
|
|
|
|
<div class="step-icon">
|
|
|
|
|
|
<i v-if="currentStep > index" class="fa fa-check" />
|
|
|
|
|
|
<span v-else>{{ index + 1 }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="step-text">
|
|
|
|
|
|
<div class="step-title">{{ step.title }}</div>
|
|
|
|
|
|
</div>
|
2026-07-10 16:45:55 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-07-13 17:12:49 +08:00
|
|
|
|
</template>
|
2026-07-10 16:45:55 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="wizard-content">
|
|
|
|
|
|
<TaskSetupStep
|
|
|
|
|
|
v-if="currentStepId === 'create'"
|
|
|
|
|
|
ref="taskSetupRef"
|
|
|
|
|
|
v-model:name="task.name"
|
|
|
|
|
|
v-model:description="task.description"
|
|
|
|
|
|
v-model:process-type="processType"
|
2026-07-11 14:49:10 +08:00
|
|
|
|
v-model:structured-options="structuredOptions"
|
|
|
|
|
|
v-model:unstructured-options="unstructuredOptions"
|
2026-07-13 17:12:49 +08:00
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<ModelSelectionStep
|
|
|
|
|
|
v-else-if="currentStepId === 'model'"
|
|
|
|
|
|
ref="modelSelectionRef"
|
|
|
|
|
|
:options="modelSelectionOptions"
|
|
|
|
|
|
:models="generationModels"
|
|
|
|
|
|
@update:options="updateModelSelectionOptions"
|
2026-07-12 15:39:43 +08:00
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<SourceUploadStep
|
|
|
|
|
|
v-else-if="currentStepId === 'upload'"
|
|
|
|
|
|
:process-type="processType"
|
2026-07-10 16:45:55 +08:00
|
|
|
|
:uploaded-files="uploadedFiles"
|
2026-07-11 11:00:15 +08:00
|
|
|
|
:external-source="externalSource"
|
|
|
|
|
|
:external-pulling="externalPulling"
|
|
|
|
|
|
:external-connected="externalConnected"
|
|
|
|
|
|
@update:external-source="updateExternalSource"
|
2026-07-10 16:45:55 +08:00
|
|
|
|
@file-change="handleFileChange"
|
|
|
|
|
|
@remove-file="handleRemoveFile"
|
|
|
|
|
|
@use-sample="useSampleFile"
|
2026-07-11 11:00:15 +08:00
|
|
|
|
@test-connection="handleTestConnection"
|
|
|
|
|
|
@pull-data="handlePullData"
|
2026-07-10 16:45:55 +08:00
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<PreviewCompareStep
|
|
|
|
|
|
v-else-if="currentStepId === 'preview'"
|
|
|
|
|
|
:selected-id="selectedPreviewId"
|
|
|
|
|
|
:selected-file-id="selectedPreviewFileId"
|
|
|
|
|
|
:source-text="activeSourceText"
|
|
|
|
|
|
:items="activePreviewItems"
|
|
|
|
|
|
:process-type="processType"
|
|
|
|
|
|
:file-name="activePreviewFile?.name ?? ''"
|
|
|
|
|
|
:files="previewFiles"
|
|
|
|
|
|
@update:selected-id="selectPreviewItem"
|
|
|
|
|
|
@update:selected-file-id="selectPreviewFile"
|
|
|
|
|
|
@update:item-content="updatePreviewContent"
|
|
|
|
|
|
@restore:item="restorePreviewItem"
|
|
|
|
|
|
@add:item="addPreviewItem"
|
|
|
|
|
|
@remove:item="removePreviewItem"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<GenerationStep
|
|
|
|
|
|
v-else-if="currentStepId === 'generate'"
|
|
|
|
|
|
:task-name="task.name"
|
|
|
|
|
|
:process-type="processType"
|
|
|
|
|
|
:file-name="fileName"
|
|
|
|
|
|
:preview-count="previewItems.length"
|
|
|
|
|
|
:modified-count="modifiedPreviewCount"
|
|
|
|
|
|
:generation="generation"
|
|
|
|
|
|
@stop="stopGeneration"
|
|
|
|
|
|
@retry="startGeneration"
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
<ResultEditorStep
|
2026-07-12 15:39:43 +08:00
|
|
|
|
v-else-if="currentStepId === 'results'"
|
2026-07-10 16:45:55 +08:00
|
|
|
|
v-model:selected-id="selectedResultId"
|
|
|
|
|
|
:items="results"
|
|
|
|
|
|
@update:field="updateResultField"
|
|
|
|
|
|
@restore:item="restoreResult"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</main>
|
|
|
|
|
|
|
|
|
|
|
|
<footer class="wizard-footer">
|
|
|
|
|
|
<div class="footer-left">
|
|
|
|
|
|
<el-button v-if="currentStep > 0" @click="handleBack">
|
|
|
|
|
|
<i class="fa fa-arrow-left" style="margin-right: 6px;" /> 返回:{{ previousStepLabel }}
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
<el-button v-else @click="handleCancel">取消</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="footer-center">
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="footer-right">
|
|
|
|
|
|
<el-button
|
|
|
|
|
|
class="wizard-primary-action"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
:loading="generation.status === 'running'"
|
|
|
|
|
|
:disabled="currentStepId === 'generate' && generation.status === 'running'"
|
|
|
|
|
|
@click="handlePrimaryAction"
|
|
|
|
|
|
>
|
|
|
|
|
|
{{ primaryActionLabel }} <i class="fa" :class="primaryActionIcon" style="margin-left: 6px;" />
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</footer>
|
|
|
|
|
|
</div>
|
2026-07-11 14:49:10 +08:00
|
|
|
|
|
|
|
|
|
|
<AppConfirmDialog ref="confirmDialogRef" />
|
2026-07-10 16:45:55 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
2026-07-13 15:28:48 +08:00
|
|
|
|
<style scoped lang="scss" src="./create/data-process-create.scss"></style>
|