|
|
|
@ -6,9 +6,7 @@ |
|
|
|
<el-form-item label="任务名称"> |
|
|
|
<el-input v-model="queryForm.taskName" placeholder="请输入任务名称" clearable /> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="任务类型"> |
|
|
|
<el-input v-model="queryForm.taskType" placeholder="请输入任务类型" clearable /> |
|
|
|
</el-form-item> |
|
|
|
|
|
|
|
<el-form-item> |
|
|
|
<el-button type="primary" icon="Search" @click="handleSearch">搜索</el-button> |
|
|
|
<el-button icon="Refresh" @click="resetQuery">重置</el-button> |
|
|
|
@ -64,7 +62,6 @@ import cache from "@/plugins/cache"; |
|
|
|
// 查询条件 |
|
|
|
const queryForm = reactive({ |
|
|
|
taskName: '', |
|
|
|
taskType: '', |
|
|
|
workflowName: '', |
|
|
|
pageNum: 1, |
|
|
|
pageSize: 10, |
|
|
|
@ -101,7 +98,6 @@ function handleSearch() { |
|
|
|
// 重置 |
|
|
|
function resetQuery() { |
|
|
|
queryForm.taskName = '' |
|
|
|
queryForm.taskType = '' |
|
|
|
queryForm.pageNum = 1 |
|
|
|
getList() |
|
|
|
} |
|
|
|
|