2025-10-30 19:30:06 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="task-performance-page">
|
2026-01-10 14:00:47 +08:00
|
|
|
<div class="task-img-box">
|
|
|
|
|
<BaseTable
|
|
|
|
|
tableName="TASK_IMAGE_FILE"
|
|
|
|
|
ref="baseTableRef"
|
|
|
|
|
:api="getSimulationTaskFilesApi"
|
2026-01-21 20:07:00 +08:00
|
|
|
:params="apiParam"
|
2026-01-10 14:00:47 +08:00
|
|
|
:show-checkbox="true"
|
2026-01-15 17:04:38 +08:00
|
|
|
:actionList="actionList"
|
2026-01-10 14:00:47 +08:00
|
|
|
:full-height="true"
|
|
|
|
|
>
|
|
|
|
|
<template v-if="showLeftOptions" #leftOptions>
|
2026-02-03 11:25:35 +08:00
|
|
|
<AddFile
|
2026-01-14 17:19:33 +08:00
|
|
|
:accept="accept"
|
2026-02-03 15:37:17 +08:00
|
|
|
:api="batchAddFileInfoForTaskApi"
|
2026-02-03 11:25:35 +08:00
|
|
|
:fileType="FILE_TYPE.PNG_FILE"
|
|
|
|
|
tableName="TASK_DETAIL_UPLOAD_FILE"
|
2026-02-04 15:20:36 +08:00
|
|
|
callbackFlag="COMMON_FILE_UPLOAD_FINISHED"
|
2026-01-14 17:19:33 +08:00
|
|
|
multiple
|
2026-02-03 11:25:35 +08:00
|
|
|
:data="{
|
|
|
|
|
dirId: nodeFIleId,
|
|
|
|
|
projectId: null,
|
2026-02-03 15:37:17 +08:00
|
|
|
uuid: taskId,
|
2026-02-03 11:25:35 +08:00
|
|
|
}"
|
|
|
|
|
@finished="uploadFinishedFun"
|
2026-02-04 15:20:36 +08:00
|
|
|
>
|
|
|
|
|
<el-button>上传文件</el-button>
|
|
|
|
|
</AddFile>
|
2026-01-05 19:55:41 +08:00
|
|
|
<el-button type="primary" class="ml12" @click="downLoadFun">下载文件</el-button>
|
2026-01-10 14:00:47 +08:00
|
|
|
</template>
|
|
|
|
|
<template #type="{ row }">
|
|
|
|
|
<span>{{ getfileType(row) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
<template #fileSize="{ row }">
|
|
|
|
|
<span>{{ row.formatFileSize }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</BaseTable>
|
2025-10-30 19:30:06 +08:00
|
|
|
</div>
|
|
|
|
|
|
2026-01-10 14:00:47 +08:00
|
|
|
<FilePreview v-model="previewVisible" :fileId="currentRow?.id" />
|
2025-10-30 19:30:06 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2026-01-10 14:00:47 +08:00
|
|
|
import { ref, onMounted, watch } from 'vue';
|
2026-02-03 15:05:39 +08:00
|
|
|
import { batchAddFileInfoForTaskApi } from '@/api/project/run';
|
2026-01-04 16:17:06 +08:00
|
|
|
import { queryTaskRunApi } from '@/api/project/run';
|
|
|
|
|
import { NODE_TYPE } from '@/utils/enum/node';
|
|
|
|
|
import { FILE_TYPE } from '@/utils/enum/file';
|
2026-01-21 10:59:18 +08:00
|
|
|
import {
|
|
|
|
|
downloadFileById,
|
|
|
|
|
downloadFileByStream,
|
|
|
|
|
getFileUploadAcceptFun,
|
|
|
|
|
queryFileIdByNodeIdFun,
|
|
|
|
|
} from '@/utils/file';
|
2026-01-10 14:00:47 +08:00
|
|
|
import BaseTable from '@/components/common/table/baseTable.vue';
|
|
|
|
|
import FilePreview from '@/components/common/filePreview/index.vue';
|
2026-02-03 11:25:35 +08:00
|
|
|
import AddFile from '@/components/common/addFile/index.vue';
|
2026-01-14 17:19:33 +08:00
|
|
|
import { dataOverViewDeleteSimulationNodeFilesApi } from '@/api/data/dataOverView';
|
2026-01-20 14:00:47 +08:00
|
|
|
import { getSimulationTaskFilesApi } from '@/api/data/dataAnalysis';
|
2025-10-30 19:30:06 +08:00
|
|
|
|
2026-01-05 20:46:26 +08:00
|
|
|
const props = defineProps({
|
|
|
|
|
taskId: {
|
|
|
|
|
type: String,
|
|
|
|
|
default: '',
|
|
|
|
|
},
|
|
|
|
|
showLeftOptions: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
default: true,
|
|
|
|
|
},
|
|
|
|
|
});
|
2026-01-10 14:00:47 +08:00
|
|
|
const baseTableRef = ref();
|
2025-10-30 19:30:06 +08:00
|
|
|
|
2026-01-04 16:17:06 +08:00
|
|
|
const exampleList = ref<any>([]);
|
2026-01-05 19:55:41 +08:00
|
|
|
const nodeFIleId = ref<any>('');
|
|
|
|
|
const accept = ref<any>('');
|
2025-10-30 19:30:06 +08:00
|
|
|
|
2026-01-04 16:17:06 +08:00
|
|
|
const queryTaskRunFun = async (id: any) => {
|
|
|
|
|
const res: any = await queryTaskRunApi({ taskId: id });
|
|
|
|
|
if (res && res.code === 200) {
|
|
|
|
|
const list = res.data.map((item: any) => {
|
|
|
|
|
return {
|
|
|
|
|
...item,
|
|
|
|
|
name: item.runName,
|
|
|
|
|
type: NODE_TYPE.RUN,
|
|
|
|
|
};
|
|
|
|
|
});
|
|
|
|
|
return list;
|
|
|
|
|
} else {
|
|
|
|
|
return [];
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2026-01-10 14:00:47 +08:00
|
|
|
const currentRow = ref();
|
|
|
|
|
const previewVisible = ref(false);
|
|
|
|
|
const previewFileFun = (row: any) => {
|
|
|
|
|
currentRow.value = row;
|
|
|
|
|
previewVisible.value = true;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const actionList = ref([
|
|
|
|
|
{
|
|
|
|
|
title: '下载',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
click: (row: any) => {
|
|
|
|
|
downloadFileById(row.id);
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '预览',
|
|
|
|
|
type: 'primary',
|
|
|
|
|
click: (row: any) => {
|
|
|
|
|
previewFileFun(row);
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-01-14 17:19:33 +08:00
|
|
|
{
|
|
|
|
|
title: '删除',
|
|
|
|
|
type: 'danger',
|
|
|
|
|
needConfirm: true,
|
|
|
|
|
confirmTip: '删除后不可恢复,确认删除吗?',
|
|
|
|
|
click: (row: any) => {
|
|
|
|
|
deleteFun(row);
|
|
|
|
|
},
|
2026-01-15 17:04:38 +08:00
|
|
|
hide: () => {
|
|
|
|
|
return !props.showLeftOptions;
|
|
|
|
|
},
|
2026-01-14 17:19:33 +08:00
|
|
|
},
|
2026-01-10 14:00:47 +08:00
|
|
|
]);
|
|
|
|
|
|
2026-01-14 17:19:33 +08:00
|
|
|
const deleteFun = async (row: any) => {
|
|
|
|
|
const param = {
|
|
|
|
|
deleteId: row.id,
|
|
|
|
|
dataType: 2,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
const res: any = await dataOverViewDeleteSimulationNodeFilesApi(param);
|
|
|
|
|
if (res && res.code === 200) {
|
|
|
|
|
baseTableRef.value.resetFun();
|
|
|
|
|
}
|
2026-01-16 16:40:54 +08:00
|
|
|
} catch {}
|
2026-01-14 17:19:33 +08:00
|
|
|
};
|
|
|
|
|
|
2026-01-10 14:00:47 +08:00
|
|
|
const getfileType = (data: any) => {
|
|
|
|
|
const fileType = data.originalName.split('.').pop();
|
|
|
|
|
return fileType;
|
|
|
|
|
};
|
2026-01-21 20:07:00 +08:00
|
|
|
|
|
|
|
|
const apiParam = ref<any>({});
|
|
|
|
|
|
2026-01-04 16:17:06 +08:00
|
|
|
watch(
|
|
|
|
|
() => props.taskId,
|
|
|
|
|
async (newVal) => {
|
|
|
|
|
const task = [
|
|
|
|
|
{
|
|
|
|
|
name: '当前任务',
|
|
|
|
|
id: newVal,
|
|
|
|
|
uuid: newVal,
|
|
|
|
|
type: NODE_TYPE.TASK,
|
|
|
|
|
},
|
|
|
|
|
];
|
2026-01-21 20:07:00 +08:00
|
|
|
apiParam.value = {
|
|
|
|
|
uuid: newVal,
|
|
|
|
|
fileBizType: FILE_TYPE.PNG_FILE,
|
|
|
|
|
fileName: '',
|
|
|
|
|
startTime: '',
|
|
|
|
|
endTime: '',
|
|
|
|
|
level: NODE_TYPE.TASK,
|
|
|
|
|
};
|
2026-01-04 16:17:06 +08:00
|
|
|
const runList = await queryTaskRunFun(newVal);
|
|
|
|
|
exampleList.value = task.concat(runList);
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
immediate: true,
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2026-02-04 15:20:36 +08:00
|
|
|
const uploadFinishedFun = (data: any) => {
|
|
|
|
|
if (data.callbackFlag === 'COMMON_FILE_UPLOAD_FINISHED') {
|
|
|
|
|
baseTableRef.value.resetFun();
|
|
|
|
|
}
|
2026-01-05 19:55:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const downLoadFun = async () => {
|
2026-01-10 14:00:47 +08:00
|
|
|
const data: any = baseTableRef.value.tableRef.getCheckboxRecords() || [];
|
|
|
|
|
if (data.length) {
|
|
|
|
|
for (let i = 0; i < data.length; i++) {
|
2026-01-21 10:59:18 +08:00
|
|
|
downloadFileByStream(data[i].id);
|
2026-01-05 19:55:41 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
accept.value = await getFileUploadAcceptFun('PNG_FILE_FORMAT');
|
|
|
|
|
nodeFIleId.value = await queryFileIdByNodeIdFun(props.taskId);
|
2025-10-30 19:30:06 +08:00
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.task-performance-page {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
// height: 450px;
|
|
|
|
|
|
|
|
|
|
.task-img-box {
|
|
|
|
|
width: 100%;
|
2026-01-10 14:00:47 +08:00
|
|
|
height: 100%;
|
2025-10-30 19:30:06 +08:00
|
|
|
|
|
|
|
|
.img-item {
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
margin-bottom: 10px;
|
2025-12-02 19:31:45 +08:00
|
|
|
min-height: 100px;
|
2025-10-30 19:30:06 +08:00
|
|
|
|
|
|
|
|
.task-img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border: 1px solid #ddd;
|
2026-01-05 19:55:41 +08:00
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.check {
|
|
|
|
|
border: 1px solid var(--el-color-primary);
|
2025-10-30 19:30:06 +08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-01-05 19:55:41 +08:00
|
|
|
|
|
|
|
|
.ml12 {
|
|
|
|
|
margin-left: 12px;
|
|
|
|
|
}
|
2025-10-30 19:30:06 +08:00
|
|
|
</style>
|