add_infra_job_log_route

This commit is contained in:
gtz 2024-03-28 18:57:44 +08:00
parent ee828ec4a7
commit 33782e189c
2 changed files with 2 additions and 5 deletions

View File

@ -279,13 +279,13 @@ export default {
handleJobLog(row) { handleJobLog(row) {
if (row.id) { if (row.id) {
this.$router.push({ this.$router.push({
path:"/job/log", path:"/system/job/log",
query:{ query:{
jobId: row.id jobId: row.id
} }
}); });
} else { } else {
this.$router.push("/job/log"); this.$router.push("/system/job/log");
} }
}, },
/** 新增按钮操作 */ /** 新增按钮操作 */

View File

@ -1,8 +1,5 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<doc-alert title="定时任务" url="https://doc.iocoder.cn/job/" />
<doc-alert title="异步任务" url="https://doc.iocoder.cn/async-task/" />
<doc-alert title="消息队列" url="https://doc.iocoder.cn/message-queue/" />
<!-- 搜索栏 --> <!-- 搜索栏 -->
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px"> <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="120px">
<el-form-item label="处理器的名字" prop="handlerName"> <el-form-item label="处理器的名字" prop="handlerName">