qb 1 year ago
parent
commit
5a0504b667
  1. 13
      src/option/supervise/supervise.js
  2. 1
      src/views/aftersales/aftersalesWorkOrder.vue
  3. 86
      src/views/supervise/management.vue

13
src/option/supervise/supervise.js

@ -267,7 +267,18 @@ export const IndicatorColumnList = [
},
{
prop: 'objectionRemark',
label: '描述',
label: '整改结果',
type: 1,
values: '',
width: '130',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'appealReason',
label: '意见反馈',
type: 1,
values: '',
width: '130',

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;

86
src/views/supervise/management.vue

@ -34,6 +34,34 @@
</el-select>
</el-form-item>
<el-form-item label="考核范围">
<el-tree-select
v-model="queryTop.examineDeptName"
:data="AssessmentDepartment"
check-strictly
:render-after-expand="false"
style="width: 240px"
@node-click="BelongsearcheNodeClick"
clearable
@change="Belongingdepartment"
/>
</el-form-item>
<el-form-item label="归属部门">
<el-tree-select
v-model="queryTop.createDeptName"
:data="AssessmentDepartment"
check-strictly
:render-after-expand="false"
style="width: 240px"
@node-click="BelongsearcheNodeClickFn"
clearable
@change="BelongingdepartmentFn"
/>
</el-form-item>
<el-form-item class="el-btn">
<el-button type="primary" icon="el-icon-search" @click="searchChange"> </el-button>
</el-form-item>
@ -276,7 +304,6 @@ const columnList = ref([]);
const drawerShow = ref(false); //
const department = ref(); //
const examineDeptName = ref(''); //
/** 表格实例 */
const tableNode = ref();
const departmentNameTemp = ref(''); //
@ -495,8 +522,57 @@ const Indicatortype = () => {
query.value.pid = String(queryTop.value.classificationoptionsvalue);
onLoad(query.value);
};
const BelongsearcheNodeClick = data => {
department.value = data; //
if (data.hasChildren) {
classification(data.id, data.value);
}
query.value.examineDeptName = data.label;
onLoad(query.value);
};
//
const Belongingdepartment = () => {
console.log(queryTop.value.examineDeptName,'queryTop.value.createDeptName');
if (!queryTop.value.examineDeptName){
query.value.examineDeptName = null;
onLoad(query.value);
}
};
const BelongsearcheNodeClickFn = data => {
department.value = data; //
if (data.hasChildren) {
classification(data.id, data.value);
}
query.value.createDeptName = data.label;
onLoad(query.value);
console.log(data);
};
const BelongingdepartmentFn = () => {
if (!queryTop.value.createDeptName) {
query.value.createDeptName = null;
onLoad(query.value);
}
};
//
const ClassificationDditing = val => {
lassificationform.value={}
console.log(val);
EditID.value = val.row.id; //ID
title.value = false; //
@ -508,6 +584,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 +677,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 +722,7 @@ const newlyAddedFn = formEl => {
})
.catch(res => {})
.finally(() => {
department.value={}
loadingAddPopup.value = false; //
});
} else {
@ -664,6 +743,7 @@ const newlyAddedFn = formEl => {
.catch(res => {})
.finally(() => {
loadingAddPopup.value = false; //
department.value={}
});
}
} else {

Loading…
Cancel
Save