|
@@ -0,0 +1,300 @@
|
|
|
+<template>
|
|
|
+ <div class="table-box">
|
|
|
+ <ProTable ref="proTable" :columns="columns" row-key="id" :request-api="listDataProcessApi">
|
|
|
+ <!-- 表格 header 按钮 -->
|
|
|
+ <template #tableHeader="scope">
|
|
|
+ <el-button type="primary" v-auth="['task:dataProcess:add']" icon="CirclePlus" @click="openDialog(1, '算法数据处理新增')"> 新增 </el-button>
|
|
|
+ <el-button type="primary" v-auth="['task:dataProcess:import']" icon="Upload" plain @click="batchAdd"> 导入 </el-button>
|
|
|
+ <el-button type="primary" v-auth="['task:dataProcess:export']" icon="Download" plain @click="downloadFile"> 导出 </el-button>
|
|
|
+ <el-button
|
|
|
+ type="danger"
|
|
|
+ v-auth="['task:dataProcess:remove']"
|
|
|
+ icon="Delete"
|
|
|
+ plain
|
|
|
+ :disabled="!scope.isSelected"
|
|
|
+ @click="batchDelete(scope.selectedListIds)"
|
|
|
+ >
|
|
|
+ 批量删除
|
|
|
+ </el-button>
|
|
|
+ </template>
|
|
|
+ <!-- 表格操作 -->
|
|
|
+ <template #operation="scope">
|
|
|
+ <el-button type="primary" link icon="View" v-auth="['task:dataProcess:query']" @click="openDialog(3, '算法数据处理查看', scope.row)">
|
|
|
+ 查看
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" link icon="EditPen" v-auth="['task:dataProcess:edit']" @click="openDialog(2, '算法数据处理编辑', scope.row)">
|
|
|
+ 编辑
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" link icon="Delete" v-auth="['task:dataProcess:remove']" @click="deleteDataProcess(scope.row)"> 删除 </el-button>
|
|
|
+ </template>
|
|
|
+ </ProTable>
|
|
|
+ <FormDialog ref="formDialogRef" />
|
|
|
+ <ImportExcel ref="dialogRef" />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script setup lang="tsx" name="DataProcess">
|
|
|
+import { ref, reactive } from 'vue'
|
|
|
+import { useHandleData } from '@/hooks/useHandleData'
|
|
|
+import { useDownload } from '@/hooks/useDownload'
|
|
|
+import { ElMessageBox } from 'element-plus'
|
|
|
+import ProTable from '@/components/ProTable/index.vue'
|
|
|
+import ImportExcel from '@/components/ImportExcel/index.vue'
|
|
|
+import FormDialog from '@/components/FormDialog/index.vue'
|
|
|
+import { ProTableInstance, ColumnProps } from '@/components/ProTable/interface'
|
|
|
+import {
|
|
|
+ listDataProcessApi,
|
|
|
+ delDataProcessApi,
|
|
|
+ addDataProcessApi,
|
|
|
+ updateDataProcessApi,
|
|
|
+ importTemplateApi,
|
|
|
+ importDataProcessDataApi,
|
|
|
+ exportDataProcessApi,
|
|
|
+ getDataProcessApi
|
|
|
+} from '@/api/modules/task/dataProcess'
|
|
|
+
|
|
|
+// ProTable 实例
|
|
|
+const proTable = ref<ProTableInstance>()
|
|
|
+
|
|
|
+// 删除算法数据处理信息
|
|
|
+const deleteDataProcess = async (params: any) => {
|
|
|
+ await useHandleData(delDataProcessApi, params.id, '删除【' + params.id + '】算法数据处理')
|
|
|
+ proTable.value?.getTableList()
|
|
|
+}
|
|
|
+
|
|
|
+// 批量删除算法数据处理信息
|
|
|
+const batchDelete = async (ids: string[]) => {
|
|
|
+ await useHandleData(delDataProcessApi, ids, '删除所选算法数据处理信息')
|
|
|
+ proTable.value?.clearSelection()
|
|
|
+ proTable.value?.getTableList()
|
|
|
+}
|
|
|
+
|
|
|
+// 导出算法数据处理列表
|
|
|
+const downloadFile = async () => {
|
|
|
+ ElMessageBox.confirm('确认导出算法数据处理数据?', '温馨提示', { type: 'warning' }).then(() =>
|
|
|
+ useDownload(exportDataProcessApi, '算法数据处理列表', proTable.value?.searchParam)
|
|
|
+ )
|
|
|
+}
|
|
|
+
|
|
|
+// 批量添加算法数据处理
|
|
|
+const dialogRef = ref<InstanceType<typeof ImportExcel> | null>(null)
|
|
|
+const batchAdd = () => {
|
|
|
+ const params = {
|
|
|
+ title: '算法数据处理',
|
|
|
+ tempApi: importTemplateApi,
|
|
|
+ importApi: importDataProcessDataApi,
|
|
|
+ getTableList: proTable.value?.getTableList
|
|
|
+ }
|
|
|
+ dialogRef.value?.acceptParams(params)
|
|
|
+}
|
|
|
+
|
|
|
+const formDialogRef = ref<InstanceType<typeof FormDialog> | null>(null)
|
|
|
+// 打开弹框的功能
|
|
|
+const openDialog = async (type: number, title: string, row?: any) => {
|
|
|
+ let res = { data: {} }
|
|
|
+ if (row?.id) {
|
|
|
+ res = await getDataProcessApi(row?.id || null)
|
|
|
+ }
|
|
|
+ // 重置表单
|
|
|
+ setItemsOptions()
|
|
|
+ const params = {
|
|
|
+ title,
|
|
|
+ width: 580,
|
|
|
+ isEdit: type !== 3,
|
|
|
+ itemsOptions: itemsOptions,
|
|
|
+ model: type == 1 ? {} : res.data,
|
|
|
+ api: type == 1 ? addDataProcessApi : updateDataProcessApi,
|
|
|
+ getTableList: proTable.value?.getTableList
|
|
|
+ }
|
|
|
+ formDialogRef.value?.openDialog(params)
|
|
|
+}
|
|
|
+
|
|
|
+// 表格配置项
|
|
|
+const columns = reactive<ColumnProps<any>[]>([
|
|
|
+ { type: 'selection', fixed: 'left', width: 70 },
|
|
|
+ { prop: 'id', label: '主键ID' },
|
|
|
+ {
|
|
|
+ prop: 'subTaskId',
|
|
|
+ label: '子任务id',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'name',
|
|
|
+ label: '任务名称',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'type',
|
|
|
+ label: '任务类型',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'status',
|
|
|
+ label: '任务状态',
|
|
|
+ search: {
|
|
|
+ el: 'input'
|
|
|
+ },
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'algorithmId',
|
|
|
+ label: '算法',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'parameters',
|
|
|
+ label: '调用算法时所用的参数',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'preprocessPath',
|
|
|
+ label: '预处理数据路径',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'resultPath',
|
|
|
+ label: '结果数据路径',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'startTime',
|
|
|
+ label: '开始时间',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'index',
|
|
|
+ label: '序号',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'endTime',
|
|
|
+ label: '结束时间',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'costSecond',
|
|
|
+ label: '耗时',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ {
|
|
|
+ prop: 'log',
|
|
|
+ label: '日志',
|
|
|
+ width: 120
|
|
|
+ },
|
|
|
+ { prop: 'operation', label: '操作', width: 230, fixed: 'right' }
|
|
|
+])
|
|
|
+// 表单配置项
|
|
|
+let itemsOptions: ProForm.ItemsOptions[] = []
|
|
|
+const setItemsOptions = () => {
|
|
|
+ itemsOptions = [
|
|
|
+ {
|
|
|
+ label: '子任务id',
|
|
|
+ prop: 'subTaskId',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入子任务id'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '任务名称',
|
|
|
+ prop: 'name',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入任务名称'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '任务类型',
|
|
|
+ prop: 'type',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入任务类型'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '任务状态',
|
|
|
+ prop: 'status',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入任务状态'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '算法',
|
|
|
+ prop: 'algorithmId',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入算法'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '调用算法时所用的参数',
|
|
|
+ prop: 'parameters',
|
|
|
+ compOptions: {
|
|
|
+ type: 'textarea',
|
|
|
+ clearable: true,
|
|
|
+ placeholder: '请输入内容'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '预处理数据路径',
|
|
|
+ prop: 'preprocessPath',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入预处理数据路径'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '结果数据路径',
|
|
|
+ prop: 'resultPath',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入结果数据路径'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '开始时间',
|
|
|
+ prop: 'startTime',
|
|
|
+ compOptions: {
|
|
|
+ elTagName: 'date-picker',
|
|
|
+ type: 'date',
|
|
|
+ placeholder: '请选择开始时间'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '序号',
|
|
|
+ prop: 'index',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入序号'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '结束时间',
|
|
|
+ prop: 'endTime',
|
|
|
+ compOptions: {
|
|
|
+ elTagName: 'date-picker',
|
|
|
+ type: 'date',
|
|
|
+ placeholder: '请选择结束时间'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '耗时',
|
|
|
+ prop: 'costSecond',
|
|
|
+ compOptions: {
|
|
|
+ placeholder: '请输入耗时'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ label: '日志',
|
|
|
+ prop: 'log',
|
|
|
+ compOptions: {
|
|
|
+ type: 'textarea',
|
|
|
+ clearable: true,
|
|
|
+ placeholder: '请输入内容'
|
|
|
+ }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+}
|
|
|
+</script>
|