|
|
|
|
<template>
|
|
|
|
|
<el-dialog :visible.sync="visible" :title="!dataForm.id ? $t('add') : $t('update')" :close-on-click-modal="false" :close-on-press-escape="false">
|
|
|
|
|
<el-form :model="dataForm" :rules="dataRule" ref="dataForm" @keyup.enter.native="dataFormSubmitHandle()" :label-width="$i18n.locale === 'en-US' ? '120px' : '110px'">
|
|
|
|
|
<el-form-item label="考核名称" prop="scoreName">
|
|
|
|
|
<el-input v-model="dataForm.scoreName" placeholder="打分项名称"></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="考核部门类别" prop="deptTypeKey">
|
|
|
|
|
<el-select v-model="dataForm.deptTypeKey" placeholder="考核部门类别">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in deptTypeKeyList"
|
|
|
|
|
:key="item.dictValue"
|
|
|
|
|
:label="item.dictName"
|
|
|
|
|
:value="item.dictValue">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="考核周期" prop="scoreCycle">
|
|
|
|
|
<el-select v-model="dataForm.scoreCycle" placeholder="考核周期">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in scoreCycleList"
|
|
|
|
|
:key="item.dictValue"
|
|
|
|
|
:label="item.dictName"
|
|
|
|
|
:value="item.dictValue">
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="满分" prop="fullMarks">
|
|
|
|
|
<el-input-number v-model="dataForm.fullMarks" :min="0" :max="100"></el-input-number>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<template slot="footer">
|
|
|
|
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button>
|
|
|
|
|
<el-button type="primary" @click="dataFormSubmitHandle()">{{ $t('confirm') }}</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import debounce from 'lodash/debounce'
|
|
|
|
|
export default {
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
visible: false,
|
|
|
|
|
scoreCycleList: [],
|
|
|
|
|
deptTypeKeyList: [],
|
|
|
|
|
dataForm: {
|
|
|
|
|
id: '',
|
|
|
|
|
scoreName: '',
|
|
|
|
|
deptTypeKey: '',
|
|
|
|
|
scoreCycle: '',
|
|
|
|
|
fullMarks: ''
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created () {
|
|
|
|
|
this.getScoreCycleList()
|
|
|
|
|
this.getDeptTypeKeyList()
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
dataRule () {
|
|
|
|
|
return {
|
|
|
|
|
scoreName: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
deptTypeKey: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
scoreCycle: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
fullMarks: [
|
|
|
|
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
init () {
|
|
|
|
|
this.visible = true
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.$refs['dataForm'].resetFields()
|
|
|
|
|
if (this.dataForm.id) {
|
|
|
|
|
this.getInfo()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 获取信息
|
|
|
|
|
getInfo () {
|
|
|
|
|
this.$http.get(`/kpi/kpimanualscorerule/${this.dataForm.id}`).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.dataForm = {
|
|
|
|
|
...this.dataForm,
|
|
|
|
|
...res.data
|
|
|
|
|
}
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
// 表单提交
|
|
|
|
|
dataFormSubmitHandle: debounce(function () {
|
|
|
|
|
this.$refs['dataForm'].validate((valid) => {
|
|
|
|
|
if (!valid) {
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/kpi/kpimanualscorerule/', this.dataForm).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.$message({
|
|
|
|
|
message: this.$t('prompt.success'),
|
|
|
|
|
type: 'success',
|
|
|
|
|
duration: 500,
|
|
|
|
|
onClose: () => {
|
|
|
|
|
this.visible = false
|
|
|
|
|
this.$emit('refreshDataList')
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
}).catch(() => {})
|
|
|
|
|
})
|
|
|
|
|
}, 1000, { 'leading': true, 'trailing': false }),
|
|
|
|
|
// 获取绩效考核周期下拉框集合
|
|
|
|
|
getScoreCycleList () {
|
|
|
|
|
this.$http
|
|
|
|
|
.get(`/sys/dict/listSimple/kpi_cycle`)
|
|
|
|
|
.then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.scoreCycleList = res.data
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {})
|
|
|
|
|
},
|
|
|
|
|
// 获取考核部门类别下拉框
|
|
|
|
|
getDeptTypeKeyList () {
|
|
|
|
|
this.$http.get(`/sys/dict/listSimple/org_type`).then(({ data: res }) => {
|
|
|
|
|
if (res.code !== 0) {
|
|
|
|
|
return this.$message.error(res.msg)
|
|
|
|
|
}
|
|
|
|
|
this.deptTypeKeyList = res.data
|
|
|
|
|
}).catch(() => { })
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|