|
|
|
@ -276,7 +276,6 @@ const columnList = ref([]);
|
|
|
|
|
const drawerShow = ref(false); //抽屉显示 |
|
|
|
|
const department = ref(); //考核部门存储 |
|
|
|
|
const examineDeptName = ref(''); //考核部门名字 |
|
|
|
|
|
|
|
|
|
/** 表格实例 */ |
|
|
|
|
const tableNode = ref(); |
|
|
|
|
const departmentNameTemp = ref(''); //归属名称 |
|
|
|
@ -497,6 +496,8 @@ const Indicatortype = () => {
|
|
|
|
|
}; |
|
|
|
|
// 分类编辑 |
|
|
|
|
const ClassificationDditing = val => { |
|
|
|
|
|
|
|
|
|
lassificationform.value={} |
|
|
|
|
console.log(val); |
|
|
|
|
EditID.value = val.row.id; //编辑需要的ID |
|
|
|
|
title.value = false; //关闭编辑 |
|
|
|
@ -508,6 +509,8 @@ const ClassificationDditing = val => {
|
|
|
|
|
lassificationform.value.description = data.description; //分类描述 |
|
|
|
|
lassificationform.value.examineDeptId = data.examineDeptId; //审核部门ID |
|
|
|
|
departmentName.value = data.createDeptName; //归属部门 |
|
|
|
|
examineDeptName.value = data.examineDeptName; //考核范围 |
|
|
|
|
console.log(lassificationform.value,'回显存储'); |
|
|
|
|
// 积分管理回显 |
|
|
|
|
data.pointsEntities.forEach(res => { |
|
|
|
|
PointsList.value.push({ integral: res.point }); |
|
|
|
@ -599,14 +602,14 @@ const newlyAddedFn = formEl => {
|
|
|
|
|
formEl.validate(async valid => { |
|
|
|
|
if (valid) { |
|
|
|
|
const _arr = new Set(); |
|
|
|
|
|
|
|
|
|
console.log(examineDeptName.value,'考核部门'); |
|
|
|
|
let data = { |
|
|
|
|
name: lassificationform.value.name, //分类名称 |
|
|
|
|
description: lassificationform.value.description, //分类描述 |
|
|
|
|
pid: lassificationform.value.classificationoptionsvalue, //分类ID |
|
|
|
|
pointsEntities: [], //积分 |
|
|
|
|
examineDeptId: lassificationform.value.examineDeptId, //考核部门ID |
|
|
|
|
examineDeptName: department.value.label ? department.value.label : '', //考核部门名称 |
|
|
|
|
examineDeptName: department.value.label ? department.value.label : examineDeptName.value, //考核部门名称 |
|
|
|
|
}; |
|
|
|
|
console.log(AssessmentDepartment.value, '部门'); |
|
|
|
|
let content = ''; |
|
|
|
@ -644,6 +647,7 @@ const newlyAddedFn = formEl => {
|
|
|
|
|
}) |
|
|
|
|
.catch(res => {}) |
|
|
|
|
.finally(() => { |
|
|
|
|
department.value={} |
|
|
|
|
loadingAddPopup.value = false; //关闭弹窗加载 |
|
|
|
|
}); |
|
|
|
|
} else { |
|
|
|
@ -664,6 +668,7 @@ const newlyAddedFn = formEl => {
|
|
|
|
|
.catch(res => {}) |
|
|
|
|
.finally(() => { |
|
|
|
|
loadingAddPopup.value = false; //关闭弹窗加载 |
|
|
|
|
department.value={} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|