|
|
|
@ -49,10 +49,10 @@
|
|
|
|
|
<el-button |
|
|
|
|
type="primary" |
|
|
|
|
plain |
|
|
|
|
@click="openForm('create')" |
|
|
|
|
v-hasPermi="['system:task-info:create']" |
|
|
|
|
@click="push({ path: '/task/create' })" |
|
|
|
|
> |
|
|
|
|
<Icon icon="ep:plus" class="mr-5px" /> 新增 |
|
|
|
|
<Icon icon="ep:plus" class="mr-5px" /> 创建任务 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button |
|
|
|
|
type="success" |
|
|
|
@ -71,7 +71,7 @@
|
|
|
|
|
<ContentWrap> |
|
|
|
|
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true"> |
|
|
|
|
<el-table-column label="任务标题" align="center" prop="title" /> |
|
|
|
|
<el-table-column label="执行周期" align="center" prop="execCycle" > |
|
|
|
|
<el-table-column label="执行周期" align="center" prop="execCycle"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.TASK_EXEC_TIME" :value="scope.row.execCycle" /> |
|
|
|
|
</template> |
|
|
|
@ -81,14 +81,24 @@
|
|
|
|
|
<dict-tag :type="DICT_TYPE.TASK_TYPE" :value="scope.row.taskType" /> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="任务优先级" align="center" prop="priority" > |
|
|
|
|
<el-table-column label="任务优先级" align="center" prop="priority"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.TASK_PRIORITY" :value="scope.row.priority" /> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="任务状态" align="center" prop="status" /> |
|
|
|
|
<el-table-column label="计划开始时间" align="center" prop="startDate" :formatter="dateFormatter"/> |
|
|
|
|
<el-table-column label="计划结束时间" align="center" prop="endDate" :formatter="dateFormatter"/> |
|
|
|
|
<el-table-column |
|
|
|
|
label="计划开始时间" |
|
|
|
|
align="center" |
|
|
|
|
prop="startDate" |
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
/> |
|
|
|
|
<el-table-column |
|
|
|
|
label="计划结束时间" |
|
|
|
|
align="center" |
|
|
|
|
prop="endDate" |
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
/> |
|
|
|
|
<!-- <el-table-column |
|
|
|
|
label="任务创建时间" |
|
|
|
|
align="center" |
|
|
|
@ -106,12 +116,7 @@
|
|
|
|
|
<!-- <el-table-column label="执行到第几" align="center" prop="taskStep" /> --> |
|
|
|
|
<el-table-column label="操作" align="center" min-width="120px"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
|
|
|
|
|
<el-button |
|
|
|
|
link |
|
|
|
|
type="danger" |
|
|
|
|
@click="selectEnterprise(scope.row.id)" |
|
|
|
|
> |
|
|
|
|
<el-button link type="danger" @click="selectEnterprise(scope.row.id)"> |
|
|
|
|
企业范围 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
@ -155,11 +160,11 @@ import { TaskInfoApi, TaskInfoVO } from '@/api/system/taskinfo'
|
|
|
|
|
import TaskInfoForm from './TaskInfoForm.vue' |
|
|
|
|
|
|
|
|
|
/** 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 列表 */ |
|
|
|
|
defineOptions({ name: 'TaskInfo' }) |
|
|
|
|
defineOptions({ name: 'TaskList' }) |
|
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
|
|
const { t } = useI18n() // 国际化 |
|
|
|
|
|
|
|
|
|
const { push } = useRouter() |
|
|
|
|
const loading = ref(true) // 列表的加载中 |
|
|
|
|
const list = ref<TaskInfoVO[]>([]) // 列表的数据 |
|
|
|
|
const total = ref(0) // 列表的总页数 |
|
|
|
@ -180,7 +185,7 @@ const queryParams = reactive({
|
|
|
|
|
parentId: undefined, |
|
|
|
|
parentType: undefined, |
|
|
|
|
taskStep: undefined, |
|
|
|
|
taskTotal: undefined, |
|
|
|
|
taskTotal: undefined |
|
|
|
|
}) |
|
|
|
|
const queryFormRef = ref() // 搜索的表单 |
|
|
|
|
const exportLoading = ref(false) // 导出的加载中 |
|
|
|
@ -198,9 +203,7 @@ const getList = async () => {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//选择任务中企业范围 |
|
|
|
|
const selectEnterprise = async (id: number) => { |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
const selectEnterprise = async (id: number) => {} |
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
|
const handleQuery = () => { |
|
|
|
@ -252,4 +255,4 @@ const handleExport = async () => {
|
|
|
|
|
onMounted(() => { |
|
|
|
|
getList() |
|
|
|
|
}) |
|
|
|
|
</script> |
|
|
|
|
</script> |