| | |
| | | <el-form-item label="任务组名" prop="jobGroup">
|
| | | <el-select
|
| | | v-model="queryParams.jobGroup"
|
| | | placeholder="请任务组名"
|
| | | placeholder="请选择任务组名"
|
| | | clearable
|
| | | style="width: 240px"
|
| | | >
|
| | |
| | | </el-table-column>
|
| | | <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
| | | <template #default="scope">
|
| | | <el-button
|
| | | type="text"
|
| | | icon="View"
|
| | | @click="handleView(scope.row)"
|
| | | v-hasPermi="['monitor:job:query']"
|
| | | >详细</el-button>
|
| | | <el-button link type="primary" icon="View" @click="handleView(scope.row)" v-hasPermi="['monitor:job:query']">详细</el-button>
|
| | | </template>
|
| | | </el-table-column>
|
| | | </el-table>
|
| | |
| | | }
|
| | |
|
| | | (() => {
|
| | | const jobId = route.query.jobId;
|
| | | const jobId = route.params && route.params.jobId;
|
| | | if (jobId !== undefined && jobId != 0) {
|
| | | getJob(jobId).then(response => {
|
| | | queryParams.value.jobName = response.data.jobName;
|