211 lines
6.4 KiB
Vue
211 lines
6.4 KiB
Vue
<template>
|
|
<el-card class="box-card" shadow="always">
|
|
<div slot="header" class="clearfix">
|
|
<span>{{ title }}</span>
|
|
<el-button-group style="float: right;">
|
|
<el-button type="primary" size="mini" icon="el-icon-finished" :loading="loadingOptions.loading" :disabled="loadingOptions.isDisabled" @click="submitForm">{{ loadingOptions.loadingText }}</el-button>
|
|
<el-button size="mini" icon="el-icon-back" @click="showCard">返回</el-button>
|
|
</el-button-group>
|
|
</div>
|
|
<div class="body-wrapper" style="padding-left: 25%">
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px" style="width: 700px">
|
|
<el-form-item label="任务名称" prop="jobName">
|
|
<el-input v-model="form.jobName" placeholder="任务名称" />
|
|
</el-form-item>
|
|
<el-form-item label="任务类型" prop="jobType">
|
|
<el-select v-model="form.jobType" placeholder="请选择任务类型" @change="ruleItemSelectChanged" style="width: 100%">
|
|
<el-option
|
|
v-for="item in ruleItemOptions"
|
|
:key="item.typeId"
|
|
:label="item.typeName"
|
|
:value="item.typeId"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="检测用例" prop="checkCase">
|
|
<el-select v-model="form.checkCase" multiple placeholder="检测用例" style="width: 100%">
|
|
<el-option
|
|
v-for="item in checkCaseOptions"
|
|
:key="item.id"
|
|
:label="item.ruleName"
|
|
:value="item.id">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="cron表达式" prop="cronExpression">
|
|
<el-input v-model="form.cronExpression" placeholder="cron表达式" />
|
|
</el-form-item>
|
|
<el-form-item label="状态" prop="status">
|
|
<el-radio-group v-model="form.status">
|
|
<el-radio
|
|
v-for="dict in statusOptions"
|
|
:key="dict.id"
|
|
:label="dict.itemText"
|
|
>{{ dict.itemValue }}
|
|
</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item label="任务概述" prop="remark">
|
|
<el-input v-model="form.remark" type="textarea" :rows="8" placeholder="请输入内容" />
|
|
</el-form-item>
|
|
</el-form>
|
|
</div>
|
|
</el-card>
|
|
</template>
|
|
|
|
<script>
|
|
import { updateCheckJob, getScheduleJobById } from '@/api/quality/checkjob'
|
|
import { pageCheckRule } from '@/api/quality/checkrule'
|
|
|
|
export default {
|
|
name: 'CheckJobEdit',
|
|
props: {
|
|
data: {
|
|
type: Object,
|
|
default: function () {
|
|
return {}
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
title: '检测任务修改',
|
|
// 展示切换
|
|
showOptions: {
|
|
data: {},
|
|
showList: true,
|
|
showAdd: false,
|
|
showEdit: false,
|
|
showDetail: false
|
|
},
|
|
// 保存按钮
|
|
loadingOptions: {
|
|
loading: false,
|
|
loadingText: '保存',
|
|
isDisabled: false
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
jobName: [
|
|
{ required: true, message: '任务名称不能为空', trigger: 'blur' }
|
|
],
|
|
jobType: [
|
|
{ required: true, message: '任务类型不能为空', trigger: 'change' }
|
|
],
|
|
cronExpression: [
|
|
{ required: true, message: 'cron表达式不能为空', trigger: 'blur' }
|
|
]
|
|
},
|
|
checkCaseOptions: [],
|
|
// 状态数据字典
|
|
statusOptions: [],
|
|
// 规则级别数据字典
|
|
ruleLevelOptions: [],
|
|
// 核查类型数据字典
|
|
ruleItemOptions: [
|
|
{ typeId: 'structure', typeName: '结构符合性' },
|
|
{ typeId: 'content', typeName: '内容符合性' },
|
|
{ typeId: 'relevance', typeName: '关联符合性' }
|
|
],
|
|
sourceOptions: [],
|
|
tableOptions: [],
|
|
columnOptions: [],
|
|
dictTypeOptions: [],
|
|
relatedColumnOptions: []
|
|
}
|
|
},
|
|
created() {
|
|
this.form.jobType = this.data.jobType
|
|
this.getDicts('sys_common_status').then(response => {
|
|
if (response.success) {
|
|
this.statusOptions = response.data
|
|
}
|
|
})
|
|
this.getCheckRule()
|
|
},
|
|
mounted() {
|
|
this.getCheckJob(this.data.id)
|
|
},
|
|
methods: {
|
|
/** 获取详情 */
|
|
async getCheckJob(id) {
|
|
this.form = await getScheduleJobById(id).then(response => {
|
|
if (response.success) {
|
|
console.log('response==', response)
|
|
return response.data
|
|
}
|
|
})
|
|
},
|
|
showCard() {
|
|
this.$emit('showCard', this.showOptions)
|
|
},
|
|
ruleItemSelectChanged(val) {
|
|
const item = this.ruleItemOptions.find(function (item) {
|
|
return item.typeId === val
|
|
})
|
|
this.form.jobType = item.typeId
|
|
},
|
|
getCheckRule() {
|
|
let ruleType = 'nr'
|
|
if(this.form.jobType == 'structure'){
|
|
ruleType = 'jg'
|
|
} else if(this.form.jobType == 'relevance'){
|
|
ruleType = 'gl'
|
|
}
|
|
let params = {
|
|
pageNum: 1,
|
|
pageSize: 20,
|
|
projectId: '1111',
|
|
ruleTypeId: '',
|
|
ruleName: '',
|
|
ruleType: ruleType
|
|
}
|
|
this.checkCaseOptions = []
|
|
pageCheckRule(params).then(response => {
|
|
if (response.success) {
|
|
const { data } = response
|
|
this.checkCaseOptions = data.data
|
|
}
|
|
})
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm: function () {
|
|
this.$refs['form'].validate(valid => {
|
|
if (valid) {
|
|
this.loadingOptions.loading = true
|
|
this.loadingOptions.loadingText = '保存中...'
|
|
this.loadingOptions.isDisabled = true
|
|
updateCheckJob(this.form).then(response => {
|
|
if (response.success) {
|
|
this.$message.success('保存成功')
|
|
setTimeout(() => {
|
|
// 2秒后跳转列表页
|
|
this.$emit('showCard', this.showOptions)
|
|
}, 2000)
|
|
} else {
|
|
this.$message.error('保存失败')
|
|
this.loadingOptions.loading = false
|
|
this.loadingOptions.loadingText = '保存'
|
|
this.loadingOptions.isDisabled = false
|
|
}
|
|
}).catch(() => {
|
|
this.loadingOptions.loading = false
|
|
this.loadingOptions.loadingText = '保存'
|
|
this.loadingOptions.isDisabled = false
|
|
})
|
|
}
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.el-card ::v-deep .el-card__body {
|
|
height: calc(100vh - 230px);
|
|
overflow-y: auto;
|
|
}
|
|
</style>
|