233 lines
8.7 KiB
Vue
233 lines
8.7 KiB
Vue
<template>
|
|
<div class="app-container calendar-list-container">
|
|
<div class="filter-container">
|
|
<el-button class="filter-item" type="primary" v-waves icon="el-icon-search" @click="handleFilter">{{$t('table.search')}}</el-button>
|
|
</div>
|
|
|
|
<el-table :key='tableKey' :data="list" v-loading="listLoading" element-loading-text="给我一点时间" border fit highlight-current-row style="width: 100%">
|
|
<el-table-column type="index" width="100" :label="$t('table.id')"></el-table-column>
|
|
<el-table-column align="center" :label="$t('table.desc')" width="200">
|
|
<template slot-scope="scope">
|
|
<span>{{scope.row.desc}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" :label="$t('table.handler')" width="200">
|
|
<template slot-scope="scope">
|
|
<span>{{scope.row.handler}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" :label="$t('table.cron')" width="200">
|
|
<template slot-scope="scope">
|
|
<span>{{scope.row.cron}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="150px" align="center" :label="$t('table.createTime')">
|
|
<template slot-scope="scope">
|
|
<span>{{scope.row.createTime | parseTime('{y}-{m}-{d} {h}:{i}')}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column width="150px" align="center" :label="$t('table.updateTime')">
|
|
<template slot-scope="scope">
|
|
<span>{{scope.row.updateTime | parseTime('{y}-{m}-{d} {h}:{i}')}}</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column class-name="status-col" :label="$t('table.enableStatus')" width="100">
|
|
<template slot-scope="scope">
|
|
<el-tag :type="scope.row.enable | statusFilter">{{scope.row.enable | statusName}}</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column class-name="status-col" :label="$t('route.jobLog')" width="100">
|
|
<template slot-scope="scope">
|
|
<el-button size="mini" type="text" @click="handleLogClick(scope.row)">查看</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column align="center" :label="$t('table.actions')" min-width="230" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button size="mini" type="primary" @click="handleEditClick(scope.row)">编辑</el-button>
|
|
<el-button size="mini" type="primary" @click="handleExecuteClick(scope.row)">执行</el-button>
|
|
<el-button v-if="scope.row.enable === 1" size="mini" type="danger" @click="handleModifyStatus(scope.row,2)">停止</el-button>
|
|
<el-button v-if="scope.row.enable === 2" size="mini" type="success" @click="handleModifyStatus(scope.row,1)">启动</el-button>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<div class="pagination-container">
|
|
<el-pagination background @size-change="handleSizeChange" @current-change="handleCurrentChange" :current-pageInfo.sync="listQuery.current"
|
|
:pageInfo-sizes="[10,20,30, 50]" :pageInfo-size="listQuery.size" layout="total, sizes, prev, pager, next, jumper" :total="total">
|
|
</el-pagination>
|
|
</div>
|
|
|
|
<el-dialog title="执行" :visible.sync="executeVisible">
|
|
<el-form ref="dataForm" :model="temp" label-position="right" label-width="70px">
|
|
<el-form-item :label="$t('table.jobParam')" prop="param">
|
|
<el-input v-model="temp.param" type="textarea" :rows="4" placeholder="请输入任务执行参数" :maxlength="200" show-word-limit style="padding-right: 20px"/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button @click="executeVisible = false">{{$t('table.cancel')}}</el-button>
|
|
<el-button type="primary" @click="commitExecute">{{$t('table.confirm')}}</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
<el-dialog title="编辑" :visible.sync="editVisible">
|
|
<el-form ref="editForm" :rules="editRules" :model="edit" label-position="right" label-width="100px" style="padding-right: 20px">
|
|
<el-form-item :label="$t('table.handler')" prop="handler">
|
|
<el-input v-model="edit.handler" :placeholder="'请输入'+$t('table.handler')" disabled/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('table.cron')" prop="cron">
|
|
<el-input v-model="edit.cron" :placeholder="'请输入'+$t('table.cron')"/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('table.desc')" prop="desc">
|
|
<el-input v-model="edit.desc" type="textarea" :rows="2" :placeholder="'请输入'+$t('table.desc')" show-word-limit/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('table.jobParam')" prop="param">
|
|
<el-input v-model="edit.param" type="textarea" :rows="2" :placeholder="'请输入'+$t('table.jobParam')" show-word-limit/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('table.alarmEmail')" prop="alarmEmail">
|
|
<el-input v-model="edit.alarmEmail" :placeholder="'请输入'+$t('table.alarmEmail')"/>
|
|
</el-form-item>
|
|
<el-form-item :label="$t('table.alarmDing')" prop="alarmDing">
|
|
<el-input v-model="edit.alarmDing" :placeholder="'请输入'+$t('table.alarmDing')"/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button @click="editVisible = false">{{$t('table.cancel')}}</el-button>
|
|
<el-button type="primary" @click="commitEdit">{{$t('table.confirm')}}</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { fetchList, updateEnableStatus, execute, updateJobInfo } from '@/api/jobInfo'
|
|
import waves from '@/directive/waves' // 水波纹指令
|
|
|
|
export default {
|
|
name: 'jobManager',
|
|
directives: {
|
|
waves
|
|
},
|
|
data() {
|
|
return {
|
|
tableKey: 0,
|
|
list: null,
|
|
total: null,
|
|
listLoading: true,
|
|
listQuery: {
|
|
current: 1,
|
|
size: 10,
|
|
importance: undefined,
|
|
title: undefined,
|
|
type: undefined
|
|
},
|
|
temp: {
|
|
id: '',
|
|
param: ''
|
|
},
|
|
executeVisible: false,
|
|
editVisible: false,
|
|
edit: {
|
|
id: '',
|
|
desc: '',
|
|
handler: '',
|
|
cron: '',
|
|
alarmEmail: '',
|
|
alarmDing: '',
|
|
param: ''
|
|
},
|
|
editRules: {
|
|
desc: [{ required: true, message: '描述必填', trigger: 'blur' }],
|
|
handler: [{ required: true, message: '处理器必填', trigger: 'blur' }],
|
|
cron: [{ required: true, message: 'cron必填', trigger: 'blur' }]
|
|
}
|
|
}
|
|
},
|
|
filters: {
|
|
statusName(status) {
|
|
const statusMap = {
|
|
1: '启动',
|
|
2: '停止'
|
|
}
|
|
return statusMap[status]
|
|
},
|
|
statusFilter(status) {
|
|
const statusMap = {
|
|
1: 'success',
|
|
2: 'danger'
|
|
}
|
|
return statusMap[status]
|
|
}
|
|
},
|
|
created() {
|
|
this.getList()
|
|
},
|
|
methods: {
|
|
getList() {
|
|
this.listLoading = true
|
|
fetchList(this.listQuery).then(response => {
|
|
this.list = response.data.data.records
|
|
this.total = response.data.data.total
|
|
this.listLoading = false
|
|
})
|
|
},
|
|
handleFilter() {
|
|
this.listQuery.current = 1
|
|
this.getList()
|
|
},
|
|
handleSizeChange(val) {
|
|
this.listQuery.size = val
|
|
this.getList()
|
|
},
|
|
handleCurrentChange(val) {
|
|
this.listQuery.current = val
|
|
this.getList()
|
|
},
|
|
handleModifyStatus(row, enable) {
|
|
updateEnableStatus(row.id, enable).then(response => {
|
|
if (response.data.data.code === 0) {
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success'
|
|
})
|
|
}
|
|
this.getList()
|
|
})
|
|
},
|
|
handleExecuteClick(row) {
|
|
this.temp.id = row.id
|
|
this.temp.param = row.param
|
|
this.executeVisible = true
|
|
},
|
|
handleEditClick(row) {
|
|
this.edit = row
|
|
this.editVisible = true
|
|
},
|
|
commitExecute() {
|
|
execute(this.temp).then(response => {
|
|
if (response.data.code === 0) {
|
|
this.executeVisible = false
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
commitEdit() {
|
|
updateJobInfo(this.edit).then(response => {
|
|
if (response.data.code === 0) {
|
|
this.editVisible = false
|
|
this.$message({
|
|
message: '操作成功',
|
|
type: 'success'
|
|
})
|
|
}
|
|
})
|
|
},
|
|
handleLogClick(row) {
|
|
this.$router.push({ path: '/log/jobLog', query: { jobId: row.id }})
|
|
}
|
|
}
|
|
}
|
|
</script>
|