| | |
| | | </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;
|