Browse Source

修复客服已知编辑bug,积分模块新增部门编辑和新增

dev-xx
马远东 1 year ago
parent
commit
8cfa6503d2
  1. 5
      src/axios.js
  2. 40
      src/store/modules/tags.js
  3. 26
      src/views/aftersales/aftersalesWorkOrder.vue
  4. 4
      src/views/aftersales/aftersalesWorkOrderInfo.vue
  5. 479
      src/views/aftersales/aftersalesWorkOrdermodify.vue
  6. 123
      src/views/supervise/management.vue

5
src/axios.js

@ -140,10 +140,9 @@ axios.interceptors.response.use(
}
setTimeout(() => {
msg.value = '';
}, 0);
}, 50);
msg.value=message
return Promise.reject(new Error(message));
return Promise.reject(new Error(message));
}
// 正常状态返回responseData
return res;

40
src/store/modules/tags.js

@ -1,41 +1,43 @@
import { setStore, getStore } from 'utils/store';
import website from '@/config/website';
import { setStore, getStore } from 'utils/store';// 从 'utils/store' 导入 setStore 和 getStore 方法
import website from '@/config/website';// 从项目的配置文件中导入 website 对象
const tagWel = website.fistPage;
const tagWel = website.fistPage;// 从 website 配置中获取第一个页面的配置
const navs = {
state: {
tagList: getStore({ name: 'tagList' }) || [],
tag: getStore({ name: 'tag' }) || {},
tagWel: tagWel,
tagList: getStore({ name: 'tagList' }) || [], // 尝试从本地存储获取标签列表,如果没有则设为空数组
tag: getStore({ name: 'tag' }) || {}, // 尝试从本地存储获取当前标签,如果没有则设为空对象
tagWel: tagWel, // 设置第一个页面的配置为 tagWel
},
mutations: {
// 添加新的标签
ADD_TAG: (state, action) => {
if (typeof action.name == 'function') action.name = action.name(action.query);
state.tag = action;
setStore({ name: 'tag', content: state.tag });
if (state.tagList.some(ele => ele.fullPath == action.fullPath)) return;
state.tagList.push(action);
setStore({ name: 'tagList', content: state.tagList });
state.tag = action;// 设置当前的标签
setStore({ name: 'tag', content: state.tag });// 在本地存储中保存当前标签
if (state.tagList.some(ele => ele.fullPath == action.fullPath)) return; // 如果列表中已经有了这个标签则不添加
state.tagList.push(action);// 将新标签添加到列表中
setStore({ name: 'tagList', content: state.tagList }); // 在本地存储中保存标签列表
},
// 关闭指定标签
DEL_TAG: (state, action) => {
state.tagList = state.tagList.filter(item => {
return item.fullPath !== action.fullPath;
return item.fullPath !== action.fullPath;// 保留列表中不是指定路径的标签
});
setStore({ name: 'tagList', content: state.tagList });
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储中的标签列表
},
// 关闭所有标签
DEL_ALL_TAG: (state, tagList = []) => {
state.tagList = tagList;
setStore({ name: 'tagList', content: state.tagList });
state.tagList = tagList;// 清空标签列表
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储
},
// 关闭除了当前页面的所有页面
DEL_TAG_OTHER: state => {
state.tagList = state.tagList.filter(item => {
console.log("关闭其他111state.tag.fullPath, website.fistPage.path",state.tag.fullPath, website.fistPage.path,item);
return [state.tag.fullPath, website.fistPage.path].includes(item.fullPath);
return [state.tag.fullPath, website.fistPage.path].includes(item.fullPath);// 保留当前路径和第一个页面的路径
});
console.log("2222state.tagList",state.tagList);
setStore({ name: 'tagList', content: state.tagList });
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储
},
// 关闭当前页面
DEL_TAG_CURRENT: state => {
@ -45,10 +47,10 @@ const navs = {
// this.demoData = this.demoData.filter((o) => {
// return state.tag.fullPath !== del
// })
return state.tag.fullPath !== item.fullPath;
return state.tag.fullPath !== item.fullPath;// 保留不是当前路径的标签
});
// console.log("state.tagList",state.tagList);
setStore({ name: 'tagList', content: state.tagList });
setStore({ name: 'tagList', content: state.tagList });// 更新本地存储
},
},
};

26
src/views/aftersales/aftersalesWorkOrder.vue

@ -1800,18 +1800,21 @@ const IndexTable = (val,Refresh) => {
console.log(res, '初始化返回值');
details.loadingObj.list = false; //
if (res.data.data) {
console.log(res.data.data, '初始化返回值===>');
console.log(res.data.data.records.length,'res.data.data.records');
console.log(TabList.value,'TabList.value===>');
// page.value.total = res.data.data.total; //
if (res.data.data.records.length) {
Statusprocessing(res.data.data.records);
console.log(res.data.data.records,'res.data.data.records有值');
TabList.value.find(res=>res.name == TabPermissions.value).DataList = res.data.data.records
TabList.value.find(res=>res.name == TabPermissions.value).total = res.data.data.total
TabList.value.find(res=>res.name == TabPermissions.value).request=false
console.log(TabList.value,'当前存储的值');
// details.data = res.data.data.records;
details.data = TabList.value.find(res=>res.name == TabPermissions.value).DataList
page.value.total = TabList.value.find(res=>res.name == TabPermissions.value).total
console.log(TabList.value,'TabList.value===>');
Statusprocessing(res.data.data.records);
} else {
// details.data = res.data.data.records;
details.data = TabList.value.find(res=>res.name == TabPermissions.value).DataList;
@ -2314,6 +2317,9 @@ const appeal = (val, state) => {
};
//
const DetermineClaims = val => {
console.log(val.row);
let data = {
id: val.row.lawoId,
@ -2324,14 +2330,13 @@ const DetermineClaims = val => {
$_settlementUpdate(data)
.then(res => {
console.log(res);
details.loadingObj.list = false; //
if (res.data.code == 200) {
tabChenge(TabPermissions.value);
tabChenge(TabPermissions.value,{},true);
}
})
.catch(res => {
details.loadingObj.list = false; //
});
})
};
//
const Resultediting = val => {
@ -2349,6 +2354,7 @@ const Resultediting = val => {
workOrderNumber: val.row.workOrderNumber,
RouterState: 'Kfend',
Processingresults: true, //
Resultediting:true,//
index: '1',
},
});
@ -2913,7 +2919,7 @@ const AppealTab = val => {
let data = {
...details.query,
};
IndexTable(data);
IndexTable(data,true);
} else {
AppealListFn(); //
}
@ -3478,7 +3484,7 @@ const DetermineStorage = val => {
});
}
console.log(res, '处理完毕确定');
tabChenge(TabPermissions.value);
tabChenge(TabPermissions.value,{},true);
})
.catch(res => {
console.log(res, '错误信息');
@ -3616,7 +3622,7 @@ const ResultConfirmation = val => {
type: 'success',
});
}
tabChenge(TabPermissions.value);
tabChenge(TabPermissions.value,{},true);
})
.catch(res => {
console.log(res, '错误信息');
@ -3692,7 +3698,7 @@ const ResultConfirmation = val => {
});
}
console.log(res, '处理完毕确定');
tabChenge(TabPermissions.value);
tabChenge(TabPermissions.value,{},true);
})
.catch(res => {
console.log(res, '错误信息');

4
src/views/aftersales/aftersalesWorkOrderInfo.vue

@ -1522,6 +1522,7 @@ const CustomerServiceCompleted = () => {
RouterState: 'Kfend',
workOrderStatus: $route.query.workOrderStatus, //
CompletedEditing: 'true', //
CustomerServiceCompleted: 'true', //
index: '1',
},
});
@ -1538,6 +1539,7 @@ const EditInformation = () => {
warehouseId: $route.query.warehouseId,
workOrderNumber: $route.query.workOrderNumber,
RouterState: 'Infoedit',
EditInformation:true, //
ProcessType: $route.query.ProcessType, // 1 2
ProcessingresultsState:UserPermissions.value !='仓库客服'?true:false, //
workOrderStatus: $route.query.workOrderStatus, //
@ -1558,7 +1560,7 @@ const AppealEstablished = () => {
workOrderStatus: $route.query.workOrderStatus, //
Appealeditor: 'appeal', //
appealID: $route.query.appealID, //ID
AppealEstablished: 'true', //
AppealEstablished: true, //
},
});
};

479
src/views/aftersales/aftersalesWorkOrdermodify.vue

@ -425,7 +425,7 @@
:reserve-keyword="false"
placeholder="请选择处理结果"
@change="changeProcessingResults"
:disabled="Appealeditor == 'appeal'"
:disabled="ProcessingProhibited"
>
<el-option
v-for="item in ProcessingResults"
@ -447,7 +447,7 @@
:min="item.min"
:max="item.max"
@change="TotalChange"
:disabled="Appealeditor == 'appeal' && CompletedEditing"
:disabled="ProcessingProhibited"
/>
</el-tooltip>
<!-- 申诉的时候不展示 -->
@ -468,7 +468,7 @@
<el-input
v-model="item.paymentUnit"
placeholder="请输入支付单位"
:disabled="Appealeditor == 'appeal' && CompletedEditing"
:disabled="ProcessingProhibited"
/>
</div>
@ -479,7 +479,7 @@
format="YYYY-MM-DD"
value-format="YYYY-MM-DD HH:mm:ss"
placeholder="支付时间"
:disabled="Appealeditor == 'appeal' && CompletedEditing"
:disabled="ProcessingProhibited"
class="el_Claimpaymenttime"
/>
</el-tooltip>
@ -499,13 +499,13 @@
clearable
:autosize="{ minRows: 3, maxRows: 4 }"
type="textarea"
:disabled="Appealeditor == 'appeal'"
:disabled="ProcessingProhibited"
/>
</el-form-item>
</el-tab-pane>
</el-tabs>
<el-tabs type="border-card" class="demo-tabs" v-if="CompensationParty.length">
<el-tabs type="border-card" class="demo-tabs">
<el-tab-pane>
<template #label>
<span class="custom-tabs-label">
@ -542,7 +542,7 @@
v-model="item.warehouseId"
filterable
placeholder="请选择仓库"
:disabled="ProcessingresultsState"
:disabled="CompleteDisabling"
>
<el-option
v-for="item in warehouseData"
@ -557,7 +557,7 @@
<el-form-item label="原因">
<el-input
v-model="item.reason"
:disabled="ProcessingresultsState"
:disabled="CompleteDisabling"
placeholder="请填写原因"
/>
</el-form-item>
@ -569,7 +569,7 @@
:min="0"
v-model="item.num"
placeholder="金额"
:disabled="ProcessingresultsState"
:disabled="CompleteDisabling"
/>
</el-form-item>
</div>
@ -582,7 +582,7 @@
placeholder="请填写责任人"
clearable
:rows="2"
:disabled="ProcessingresultsState"
:disabled="CompleteDisabling"
/>
</el-form-item>
</div>
@ -668,8 +668,8 @@
<div class="dialog-footer">
<!-- <el-button @click="Indexdialog = false">取消</el-button> -->
<el-button type="primary" @click="ConfirmForm" v-if="RouterState == 'Infoedit' && UserPermissions=='仓库客服'">
1
<el-button type="primary" @click="ConfirmForm" v-if="$route.query.EditInformation && UserPermissions=='仓库客服'">
编辑提交
</el-button>
@ -677,12 +677,30 @@
<el-button
type="primary"
@click="Arbitrationcompleted"
v-if="(RouterState == 'Kfend' && !Appealeditor) || Appealeditor == 'appeal' || ProcessingresultsState"
v-if="$route.query.CustomerServiceCompleted && UserPermissions !='仓库客服'"
>
<!-- 申诉编辑 -->
提交
仲裁完结提交
</el-button>
<!-- 申诉编辑提交 -->
<el-button
type="primary"
@click="AppealEditor"
v-if="$route.query.AppealEstablished && UserPermissions !='仓库客服'"
>
申诉成立编辑提交
</el-button>
<!-- 理赔金未出编辑 -->
<el-button
type="primary"
@click="UnpaidClaimsEdited"
v-if="$route.query.Resultediting"
>
理赔金额未出编辑提交
</el-button>
<!--客服仲裁完结 -->
</div>
</el-card>
@ -832,6 +850,7 @@ const ShortageList = ref([]); //少货件数
const fleeingList = ref([]); //
const valueStrictly = ref();
const routerID = ref(null); //ID
const ProcessingProhibited= ref(true);//
const routerState = ref(''); //
const personResponsibleList = ref([]); //
const companyProportion = ref(100); //
@ -869,6 +888,7 @@ const CompletedEditing = ref(false); //完结编辑
const amplifyurl = ref(''); //
const amplifysrcList = ref([]); //
const ProcessingresultsState = ref(false); //
const CompleteDisabling=ref(true);//
const ProcessedId = ref(null); //iD
const Copyprocessingresults = ref(); //
const UserPermissions=ref('');//
@ -880,26 +900,26 @@ const markFieldAsModified = fieldName => {
modifiedFields.value.add(fieldName);
};
const CompensationParty = ref([
// {
// name: '',
// state: 0,
// num: null,
// reason: '',
// cld: 1,
// explains: '',
// warehouseId: '',
// personResponsibleList: '',
// }, //
// {
// name: '',
// state: 1,
// num: null,
// reason: '',
// cld: 1,
// explains: '',
// warehouseId: '',
// personResponsibleList: '',
// }, //
{
name: '',
state: 0,
num: 0,
reason: '',
cld: 1,
explains: '',
warehouseId: '',
personResponsibleList: '',
}, //
{
name: '',
state: 1,
num: 0,
reason: '',
cld: 1,
explains: '',
warehouseId: '',
personResponsibleList: '',
}, //
]); ///
const PackageInfo = ref([
//
@ -1063,14 +1083,32 @@ const onLoad = () => {
CompletedEditing.value = false;
}
//
if ($route.query.ProcessingresultsState == true && UserPermissions.value !='仓库客服' ) {
if ($route.query.ProcessingresultsState && UserPermissions.value !='仓库客服' ) {
console.log($route.query.Processingresults, '理赔金未出编辑');
ProcessingresultsState.value = false;
} else{
ProcessingresultsState.value = true;
}
//
if($route.query.CustomerServiceCompleted && UserPermissions.value !='仓库客服'){
CompleteDisabling.value = false;
}else{
CompleteDisabling.value = true;
}
//
if($route.query.AppealEstablished){
CompleteDisabling.value=false;//
}
//
if($route.query.Resultediting){
ProcessingProhibited.value=false;//
}else{
ProcessingProhibited.value=true;//
}
console.log(RouterState.value, '路由状态');
console.log(ProcessingresultsState.value,'当前状态');
getDictionaryBiz('result_handling').then(res => {
console.log(res, '发现环节');
ProcessingResults.value = res.data.data;
@ -1506,6 +1544,9 @@ const changeProcessingResults = val => {
//
const PaymentSelection = val => {
if(ProcessingProhibited.value){
return
}
console.log(val, '支付');
console.log(Paymentmethod.value);
if (val.payment) {
@ -1545,7 +1586,7 @@ const PaymentConfirmation = val => {
//
const AddCompensation = () => {
if (ProcessingresultsState.value) {
if (CompleteDisabling.value) {
//
return;
}
@ -1560,7 +1601,7 @@ const AddCompensation = () => {
};
//
const AddPayee = () => {
if (ProcessingresultsState.value) {
if (CompleteDisabling.value) {
//
return;
}
@ -1597,7 +1638,7 @@ const amountMoney = () => {
};
//
const payremove = (state, val, data) => {
if (ProcessingresultsState.value) {
if (CompleteDisabling.value) {
//
return;
}
@ -1979,10 +2020,10 @@ const ConfirmForm = () => {
});
};
//
const Arbitrationcompleted = () => {
//
if ($route.query.Appealeditor == 'appeal' && $route.query.AppealEstablished) {
//
const AppealEditor =()=>{
//
if ($route.query.AppealEstablished) {
editloading.value = true; //
let data = {
completionRecipientEntities: [], //
@ -2062,10 +2103,10 @@ const Arbitrationcompleted = () => {
console.log('申诉下面编辑完结信息');
return;
}
}
console.log(Copyprocessingresults.value, '初始化处理结果参数');
console.log(ProcessingList.value, '最新的处理结果参数');
//
const UnpaidClaimsEdited=()=>{
if (ProcessingresultsState.value) {
//
//
@ -2167,82 +2208,9 @@ const Arbitrationcompleted = () => {
console.log('理赔金额未出编辑');
return;
}
//
if (Appealeditor.value == 'appeal') {
// ,
let data = {
completionRecipientEntities: [], //
completionRecordEntities: [], //
typesOf: '1', //
reasonArbitration: Indexform.value.arbitrate, //
appealId: $route.query.appealID,
id: $route.query.id,
workOrderId: $route.query.id, //IDworkOrderId
};
data['completionRecordEntities'] = CompensationParty.value
.filter(item => item.state === 0) // 0
.map(item => {
return {
indemnitor: item.name, //
reason: item.reason, //
money: Number(item.num), //
reasonArbitration: Indexform.value.arbitrate, //
workOrderId: $route.query.id, //
warehouseId: item.warehouseId, //ID
compensationPersonnel: item.personResponsibleList, //
explains: item.reason, //
id: $route.query.id,
};
});
data['completionRecipientEntities'] = CompensationParty.value
.filter(item => item.state === 1) // 1
.map(item => {
return {
recipient: item.name, //
reasonReceivingPayment: item.reason, //
money: Number(item.num), //
workOrderNumber: $route.query.workOrderNumber, //
responsibleParty: FangAddList.value
.map(aItem =>
warehouseData.value
.filter(bItem => bItem.value === aItem.businessName)
.map(match => match.label)
.join(',')
)
.join(','),
warehouseId: $route.query.warehouseId == '/' ? '' : $route.query.warehouseId, // ID
workOrderId: $route.query.id, //
id: $route.query.id,
};
});
console.log(data, '处理好的值');
editloading.value = true; //
$_updateCompletionEnd(data)
.then(res => {
console.log(res, '完结编辑');
if (res.data.code == 200) {
ElMessage({
message: res.data.msg,
type: 'success',
});
$store.commit('DEL_TAG_CURRENT'); //
$router.push({
//
path: '/aftersales/aftersalesWorkOrder',
});
editloading.value = false; //
}
})
.catch(res => {
editloading.value = false; //
});
console.log('申诉完结信息编辑');
return;
//
}
}
//
const Arbitrationcompleted=()=>{
let data = {
id: $route.query.id,
completionRecipientEntities: [], //
@ -2335,7 +2303,272 @@ const Arbitrationcompleted = () => {
AddressClosed('/aftersales/aftersalesWorkOrdermodify'); ///
}
});
};
}
// const Arbitrationcompleted = () => {
// //
// if ($route.query.Appealeditor == 'appeal' && $route.query.AppealEstablished) {
// editloading.value = true; //
// let data = {
// completionRecipientEntities: [], //
// completionRecordEntities: [], //
// reasonArbitration: Indexform.value.arbitrate, //
// id: $route.query.id,
// appealId: $route.query.appealID, //ID
// typesOf: '1', //
// workOrderId: $route.query.id, //IDworkOrderId
// };
// if (UncompletionRecordEntitiesDat.value.length) {
// //
// data['assignListRecord'] = UncompletionRecordEntitiesDat.value.map(res => res.id);
// }
// if (UncompletionRecipientEntityListData.value.length) {
// //
// data['assignListRecipient'] = UncompletionRecipientEntityListData.value.map(res => res.id);
// }
// data['completionRecordEntities'] = CompensationParty.value
// .filter(item => item.state === 0) // 0
// .map(item => {
// return {
// // indemnitor: item.name, //
// reason: item.reason, //
// money: Number(item.num), //
// reasonArbitration: Indexform.value.arbitrate, //
// workOrderId: $route.query.id, //
// warehouseId: item.warehouseId, //ID
// compensationPersonnel: item.personResponsibleList, //
// explains: item.reason, //
// id: item.id, // ID
// };
// });
// data['completionRecipientEntities'] = CompensationParty.value
// .filter(item => item.state === 1) // 1
// .map(item => {
// return {
// // recipient: item.name, //
// reasonReceivingPayment: item.reason, //
// money: Number(item.num), //
// workOrderNumber: $route.query.workOrderNumber, //
// responsibleParty: FangAddList.value
// .map(aItem =>
// warehouseData.value
// .filter(bItem => bItem.value === aItem.businessName)
// .map(match => match.label)
// .join(',')
// )
// .join(','),
// warehouseId: item.warehouseId, //ID
// workOrderId: $route.query.id, //
// id: item.id,
// };
// });
// console.log(data, '');
// $_updateCompletionEnd(data)
// .then(res => {
// console.log(res, '');
// console.log(res, '');
// editloading.value = false; //
// if (res.data.code == 200) {
// ElMessage({
// message: res.data.msg,
// type: 'success',
// });
// $store.commit('DEL_TAG_CURRENT'); //
// $router.push({
// //
// path: '/aftersales/aftersalesWorkOrder',
// });
// }
// })
// .catch(res => {
// editloading.value = false; //
// });
// console.log('');
// return;
// }
// console.log(Copyprocessingresults.value, '');
// console.log(ProcessingList.value, '');
// if (ProcessingresultsState.value) {
// //
// //
// let data = {
// id: $route.query.id,
// resultIdentification: 2, //
// // workOrderId: $route.query.id, //ID
// resultDescription: Indexform.value.resultDescription, //
// aftersalesProcessingResultsDTO: {
// resultDescription: Indexform.value.resultDescription, //
// id: $route.query.Processed ? ProcessedId.value : $route.query.subId,
// // $route.query.Processed?
// // ProcessedId.value
// },
// };
// //
// if( Copyprocessingresults.value){
// let missingObjects = Copyprocessingresults.value.filter(objA => {
// let matchingObjects = ProcessingList.value.filter(
// objB => objB.state === objA.state && objB.id === objA.id
// );
// return matchingObjects.length === 0;
// });
// if (missingObjects.length) {
// console.log(missingObjects);
// data.aftersalesProcessingResultsDTO['assignList'] = missingObjects.map(item => item.id);
// }
// }
// data.aftersalesProcessingResultsDTO['processingMoneyEntityList'] = ProcessingList.value
// .map(item => {
// console.log(item);
// let match = ProcessingResults.value.find(element => element.dictValue == item.name);
// if (match) {
// let paymentMethodMatch = Paymentmethod.value.find(
// paymentMethod => paymentMethod.dictKey == item.payment
// );
// return {
// resultType: match.dictKey, //key
// money: item.input, //
// typesOf: 1, //
// compensationMethod: paymentMethodMatch ? paymentMethodMatch.dictKey : '',
// compensationMethodName: paymentMethodMatch ? paymentMethodMatch.dictValue : '',
// resultName: item.name, //
// paymentUnit: item.paymentUnit, //
// id: item.id, //id
// compensationTime: item.compensationTime, //
// };
// } else {
// return null;
// }
// })
// .filter(item => item !== null);
// //
// // let sum = 0; //
// // for (let i = 0; i < ProcessingList.value.length; i++) {
// // sum = computeNumber(sum, '+', ProcessingList.value[i].input).result;
// // }
// // data.aftersalesProcessingResultsDTO.money = sum; //
// let TotalAmount = 0; //
// ProcessingList.value.forEach(res => {
// console.log(res);
// TotalAmount += Number(res.input);
// });
// console.log(TotalAmount, '');
// data.aftersalesProcessingResultsDTO.money = TotalAmount; //
// data.aftersalesProcessingResultsDTO['resultType'] = ProcessingList.value
// .map(item => item.name)
// .join(','); //
// data.aftersalesProcessingResultsDTO['compensationMethod'] = ProcessingList.value
// .map(item => item.text)
// .join(',');
// console.log(data, '');
// $_addProcessingResults(data)
// .then(res => {
// console.log(res, '');
// ElMessage({
// message: res.data.msg,
// type: 'success',
// });
// if (res.data.code == 200) {
// $router.push({
// path: '/aftersales/aftersalesWorkOrder',
// });
// AddressClosed('/aftersales/aftersalesWorkOrdermodify'); //
// }
// })
// .catch(error => {
// ElMessage({
// message: res.data.msg,
// type: 'success',
// });
// });
// console.log('');
// return;
// }
// // //
// // if (Appealeditor.value == 'appeal') {
// // // ,
// // let data = {
// // completionRecipientEntities: [], //
// // completionRecordEntities: [], //
// // typesOf: '1', //
// // reasonArbitration: Indexform.value.arbitrate, //
// // appealId: $route.query.appealID,
// // id: $route.query.id,
// // workOrderId: $route.query.id, //IDworkOrderId
// // };
// // data['completionRecordEntities'] = CompensationParty.value
// // .filter(item => item.state === 0) // 0
// // .map(item => {
// // return {
// // indemnitor: item.name, //
// // reason: item.reason, //
// // money: Number(item.num), //
// // reasonArbitration: Indexform.value.arbitrate, //
// // workOrderId: $route.query.id, //
// // warehouseId: item.warehouseId, //ID
// // compensationPersonnel: item.personResponsibleList, //
// // explains: item.reason, //
// // id: $route.query.id,
// // };
// // });
// // data['completionRecipientEntities'] = CompensationParty.value
// // .filter(item => item.state === 1) // 1
// // .map(item => {
// // return {
// // recipient: item.name, //
// // reasonReceivingPayment: item.reason, //
// // money: Number(item.num), //
// // workOrderNumber: $route.query.workOrderNumber, //
// // responsibleParty: FangAddList.value
// // .map(aItem =>
// // warehouseData.value
// // .filter(bItem => bItem.value === aItem.businessName)
// // .map(match => match.label)
// // .join(',')
// // )
// // .join(','),
// // warehouseId: $route.query.warehouseId == '/' ? '' : $route.query.warehouseId, // ID
// // workOrderId: $route.query.id, //
// // id: $route.query.id,
// // };
// // });
// // console.log(data, '');
// // editloading.value = true; //
// // $_updateCompletionEnd(data)
// // .then(res => {
// // console.log(res, '');
// // if (res.data.code == 200) {
// // ElMessage({
// // message: res.data.msg,
// // type: 'success',
// // });
// // $store.commit('DEL_TAG_CURRENT'); //
// // $router.push({
// // //
// // path: '/aftersales/aftersalesWorkOrder',
// // });
// // editloading.value = false; //
// // }
// // })
// // .catch(res => {
// // editloading.value = false; //
// // });
// // console.log('');
// // return;
// // //
// // }
// };
//
const ShortageTtems = val => {

123
src/views/supervise/management.vue

@ -120,6 +120,18 @@
label-width="120px"
ref="ruleFormRef"
>
<el-form-item label="考核部门">
<el-tree-select
v-model="lassificationform.examineDeptId"
:data="AssessmentDepartment"
check-strictly
:render-after-expand="false"
style="width: 240px"
@node-click="handleNodeClick"
ref="treeSelectRef"
/>
</el-form-item>
<el-form-item label="指标分类" prop="classificationoptionsvalue">
<el-select
v-model="lassificationform.classificationoptionsvalue"
@ -174,7 +186,7 @@
<!-- 导入 -- 批量开标签 -->
<el-dialog
class="el-dialog-UploadBatch"
title="批量开标签导入"
title="指标导入"
:visible.sync="details.popUpShow.UploadBatch"
width="70%"
v-model="details.popUpShow.UploadBatch"
@ -234,6 +246,7 @@ import {
$_selectParentCalssifyList,
$_classifyAddChild,
$_classifupdateChild,
$_parentId,
} from '@/api/classify/classify';
import { isNumber } from '@/utils/util';
const loadingclassification = ref(false); //
@ -241,11 +254,13 @@ const classificationdata = ref([]); //指标分类数据
const current = ref(1); //
const total = ref(0); //
const pageSize = ref(30);
const AssessmentDepartment = ref([]); //
const lassificationform = ref({}); //
const title = ref(true); //
const search = ref(false); //
const currentPage = ref(1);
const EditID = ref(true); //ID
const treeSelectRef = ref(null); //
const queryTop = ref({}); //
const query = ref({});
const newlyAdded = ref(false); //
@ -256,6 +271,107 @@ const classificationoptionsvalue = ref([]); //分类选择的
const PointsList = ref([{ integral: 0 }]); //
const columnList = ref([]);
const drawerShow = ref(false); //
const department = ref(); //
const examineDeptName = ref(''); //
//
//
const loadChildren = (targetList, parentId, indicatorValue) => {
let dataSub = { parentId };
return $_parentId(dataSub).then(Rs => {
const children = Rs.data.data.map(item => ({
value: item.value,
label: item.title,
id: item.id,
key: item.key,
hasChildren: item.hasChildren, // hasChildren
children: [],
}));
function findAndReplace(target, value) {
for (let i = 0; i < target.length; i++) {
if (target[i].value === value) {
target[i].children = children;
break;
}
if (target[i].children && target[i].children.length > 0) {
findAndReplace(target[i].children, value);
}
}
}
findAndReplace(targetList, indicatorValue); // targetList
const childRequests = children
.filter(child => child.hasChildren)
.map(child => loadChildren(targetList, child.id, child.value)); // 使targetList
//
return Promise.all(childRequests);
});
};
//
const classification = (val, index) => {
console.log(index, '当前点击的谁');
console.log(val,'val222');
const currentCategory = AssessmentDepartment.value.find(category => category.value === index);
if (currentCategory) {
if (currentCategory.hasChildren && currentCategory.children.length === 0) {
//
console.log('当前点击的是有子分类但未加载的父分类');
loadChildren(AssessmentDepartment.value, val, index);
} else {
//
console.log('当前点击的分类没有子分类或子分类已加载');
}
} else {
console.log('分类不存在于当前的分类列表中');
}
};
//
const loadInitialCategories = (val = 0) => {
let dataSub = { parentId: val };
$_parentId(dataSub).then(res => {
console.log(res, '初始化顶级分类-------');
res.data.data.forEach(item => {
setTimeout(()=>{
classification(item.id,item.value)
},0)
department.value = item.id;
AssessmentDepartment.value.push({
value: item.value,
label: item.title,
id: item.id,
key: item.key,
hasChildren: item.hasChildren,
children: [], //
});
});
});
};
loadInitialCategories();
const handleNodeClick = (data, node, component) => {
// 'data'
// 'node' Node
// 'component'
// console.log('You clicked:', data);
department.value = data; //
console.log(department.value, '当前点击的考核部门');
console.log(data.id,'data.id');
console.log(data.value,'data.value');
if (data.hasChildren) {
classification(data.id, data.value);
}
//
};
/** 必填 */
const rules = ref({
/** 发站仓名称 */
@ -374,6 +490,7 @@ const ClassificationDditing = val => {
lassificationform.value.classificationoptionsvalue = data.pid; //
lassificationform.value.name = data.name; //
lassificationform.value.description = data.description; //
lassificationform.value.examineDeptId = data.examineDeptId; //ID
//
data.pointsEntities.forEach(res => {
PointsList.value.push({ integral: res.point });
@ -467,8 +584,10 @@ const newlyAddedFn = formEl => {
description: lassificationform.value.description, //
pid: lassificationform.value.classificationoptionsvalue, //ID
pointsEntities: [], //
examineDeptId: lassificationform.value.examineDeptId, //ID
examineDeptName: department.value.label ? department.value.label : '', //
};
console.log(AssessmentDepartment.value, '部门');
let content = '';
for (const iterator of PointsList.value) {
//

Loading…
Cancel
Save