|
|
|
@ -70,12 +70,18 @@
|
|
|
|
|
<!-- 列表 --> |
|
|
|
|
<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="id" /> |
|
|
|
|
<el-table-column label="任务状态" align="center" prop="status" > |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.TASK_STATE" :value="scope.row.status" /> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
<el-table-column label="任务名称" align="center" prop="title" /> |
|
|
|
|
<!-- <el-table-column label="执行周期" align="center" prop="execCycle"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.TASK_EXEC_TIME" :value="scope.row.execCycle" /> |
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
</el-table-column> --> |
|
|
|
|
<el-table-column label="任务类型" align="center" prop="taskType"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<dict-tag :type="DICT_TYPE.TASK_TYPE" :value="scope.row.taskType" /> |
|
|
|
@ -86,18 +92,20 @@
|
|
|
|
|
<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="publishDep" /> |
|
|
|
|
|
|
|
|
|
<el-table-column |
|
|
|
|
label="计划开始时间" |
|
|
|
|
align="center" |
|
|
|
|
prop="startDate" |
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
:formatter="dateFormatter3" |
|
|
|
|
/> |
|
|
|
|
<el-table-column |
|
|
|
|
label="计划结束时间" |
|
|
|
|
align="center" |
|
|
|
|
prop="endDate" |
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
:formatter="dateFormatter3" |
|
|
|
|
/> |
|
|
|
|
<!-- <el-table-column |
|
|
|
|
label="任务创建时间" |
|
|
|
@ -114,12 +122,19 @@
|
|
|
|
|
</template> |
|
|
|
|
</el-table-column> --> |
|
|
|
|
<!-- <el-table-column label="执行到第几" align="center" prop="taskStep" /> --> |
|
|
|
|
<el-table-column label="操作" align="center" min-width="120px"> |
|
|
|
|
|
|
|
|
|
<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="primary" @click="selectEnterprise(scope.row.id)"> |
|
|
|
|
已选 0 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" min-width="120px"> |
|
|
|
|
<template #default="scope"> |
|
|
|
|
<el-button |
|
|
|
|
link |
|
|
|
|
type="primary" |
|
|
|
@ -136,8 +151,23 @@
|
|
|
|
|
> |
|
|
|
|
删除 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
<el-button |
|
|
|
|
link |
|
|
|
|
type="primary" |
|
|
|
|
@click="openForm(scope.row.id)" |
|
|
|
|
|
|
|
|
|
> |
|
|
|
|
详情 |
|
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
</template> |
|
|
|
|
</el-table-column> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</el-table> |
|
|
|
|
<!-- 分页 --> |
|
|
|
|
<Pagination |
|
|
|
@ -154,7 +184,7 @@
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
|
import { getIntDictOptions, DICT_TYPE } from '@/utils/dict' |
|
|
|
|
import { dateFormatter } from '@/utils/formatTime' |
|
|
|
|
import { dateFormatter3 } from '@/utils/formatTime' |
|
|
|
|
import download from '@/utils/download' |
|
|
|
|
import { TaskInfoApi, TaskInfoVO } from '@/api/system/taskinfo' |
|
|
|
|
import TaskInfoForm from './TaskInfoForm.vue' |
|
|
|
|