|
|
@ -49,10 +49,10 @@ |
|
|
|
<el-button |
|
|
|
<el-button |
|
|
|
type="primary" |
|
|
|
type="primary" |
|
|
|
plain |
|
|
|
plain |
|
|
|
@click="openForm('create')" |
|
|
|
|
|
|
|
v-hasPermi="['system:task-info: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> |
|
|
|
<el-button |
|
|
|
<el-button |
|
|
|
type="success" |
|
|
|
type="success" |
|
|
@ -87,8 +87,18 @@ |
|
|
|
</template> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column label="任务状态" align="center" prop="status" /> |
|
|
|
<el-table-column label="任务状态" align="center" prop="status" /> |
|
|
|
<el-table-column label="计划开始时间" align="center" prop="startDate" :formatter="dateFormatter"/> |
|
|
|
<el-table-column |
|
|
|
<el-table-column label="计划结束时间" align="center" prop="endDate" :formatter="dateFormatter"/> |
|
|
|
label="计划开始时间" |
|
|
|
|
|
|
|
align="center" |
|
|
|
|
|
|
|
prop="startDate" |
|
|
|
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
|
|
|
/> |
|
|
|
|
|
|
|
<el-table-column |
|
|
|
|
|
|
|
label="计划结束时间" |
|
|
|
|
|
|
|
align="center" |
|
|
|
|
|
|
|
prop="endDate" |
|
|
|
|
|
|
|
:formatter="dateFormatter" |
|
|
|
|
|
|
|
/> |
|
|
|
<!-- <el-table-column |
|
|
|
<!-- <el-table-column |
|
|
|
label="任务创建时间" |
|
|
|
label="任务创建时间" |
|
|
|
align="center" |
|
|
|
align="center" |
|
|
@ -106,12 +116,7 @@ |
|
|
|
<!-- <el-table-column label="执行到第几" align="center" prop="taskStep" /> --> |
|
|
|
<!-- <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"> |
|
|
|
<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> |
|
|
|
</el-button> |
|
|
|
|
|
|
|
|
|
|
@ -155,11 +160,11 @@ import { TaskInfoApi, TaskInfoVO } from '@/api/system/taskinfo' |
|
|
|
import TaskInfoForm from './TaskInfoForm.vue' |
|
|
|
import TaskInfoForm from './TaskInfoForm.vue' |
|
|
|
|
|
|
|
|
|
|
|
/** 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 列表 */ |
|
|
|
/** 任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 列表 */ |
|
|
|
defineOptions({ name: 'TaskInfo' }) |
|
|
|
defineOptions({ name: 'TaskList' }) |
|
|
|
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
|
const message = useMessage() // 消息弹窗 |
|
|
|
const { t } = useI18n() // 国际化 |
|
|
|
const { t } = useI18n() // 国际化 |
|
|
|
|
|
|
|
const { push } = useRouter() |
|
|
|
const loading = ref(true) // 列表的加载中 |
|
|
|
const loading = ref(true) // 列表的加载中 |
|
|
|
const list = ref<TaskInfoVO[]>([]) // 列表的数据 |
|
|
|
const list = ref<TaskInfoVO[]>([]) // 列表的数据 |
|
|
|
const total = ref(0) // 列表的总页数 |
|
|
|
const total = ref(0) // 列表的总页数 |
|
|
@ -180,7 +185,7 @@ const queryParams = reactive({ |
|
|
|
parentId: undefined, |
|
|
|
parentId: undefined, |
|
|
|
parentType: undefined, |
|
|
|
parentType: undefined, |
|
|
|
taskStep: undefined, |
|
|
|
taskStep: undefined, |
|
|
|
taskTotal: undefined, |
|
|
|
taskTotal: undefined |
|
|
|
}) |
|
|
|
}) |
|
|
|
const queryFormRef = ref() // 搜索的表单 |
|
|
|
const queryFormRef = ref() // 搜索的表单 |
|
|
|
const exportLoading = ref(false) // 导出的加载中 |
|
|
|
const exportLoading = ref(false) // 导出的加载中 |
|
|
@ -198,9 +203,7 @@ const getList = async () => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//选择任务中企业范围 |
|
|
|
//选择任务中企业范围 |
|
|
|
const selectEnterprise = async (id: number) => { |
|
|
|
const selectEnterprise = async (id: number) => {} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */ |
|
|
|
/** 搜索按钮操作 */ |
|
|
|
const handleQuery = () => { |
|
|
|
const handleQuery = () => { |