Browse Source

任务执行

master
DX 1 month ago
parent
commit
8da96a8a8c
  1. 5
      src/api/system/taskinfo/index.ts
  2. 26
      src/views/task/index.vue

5
src/api/system/taskinfo/index.ts

@ -48,4 +48,9 @@ export const TaskInfoApi = {
exportTaskInfo: async (params) => {
return await request.download({ url: `/system/task-info/export-excel`, params })
},
// 导出任务表,用于存储所有的任务信息,任务可由不同用户创建并管理。 Excel
taskExec: async (data) => {
return await request.put({ url: `/system/task-info/taskExec`, data })
},
}

26
src/views/task/index.vue

@ -178,6 +178,16 @@
>
详情
</el-button>
<el-button
link
type="primary"
@click="taskExec(scope.row)"
v-if="scope.row.status == 1"
v-hasPermi="['system:task-info:update']"
>
立即执行
</el-button>
<el-button
link
type="danger"
@ -271,6 +281,22 @@ const getList = async () => {
}
}
//
const taskExec = async (data) => {
loading.value = true
try {
await TaskInfoApi.taskExec(data)
message.success(t('common.createSuccess'))
getList()
} finally {
loading.value = false
}
}
//
const selectEnterprise = async (id: number) => {}

Loading…
Cancel
Save