Browse Source

编辑错误

pre-production
马远东 1 year ago
parent
commit
c4a59645a4
  1. 1
      src/views/aftersales/aftersalesWorkOrder.vue
  2. 11
      src/views/supervise/management.vue

1
src/views/aftersales/aftersalesWorkOrder.vue

@ -2420,6 +2420,7 @@ const Appealbutton = state => {
let data = {
peopleEntityList: [], //
imagePath: '', //
workOrderId:selectList.value[0],//ID
};
if (AppealeditorState.value) {
data.workOrderId = details.selectionList[0].workOrderId;

11
src/views/supervise/management.vue

@ -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 {

Loading…
Cancel
Save