Browse Source

修复指标列表编辑

dev-xx
马远东 1 year ago
parent
commit
ade1b10073
  1. 45
      src/option/aftersales/vueTvemp.js
  2. 16
      src/views/aftersales/aftersalesWorkOrder.vue
  3. 282
      src/views/supervise/IndicatorList.vue

45
src/option/aftersales/vueTvemp.js

@ -146,6 +146,28 @@ export const columnList = [
sortable: true,
head: false,
},
{
prop: 'entryTime',
label: '财务入账时间',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'operator',
label: '操作人',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'deliverGoodsTime',
label: '送货时间',
@ -296,28 +318,7 @@ export const columnList = [
head: false,
},
{
prop: 'entryTime',
label: '财务入账时间',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'operator',
label: '操作人',
type: 2,
values: '',
width: '150',
checkarr: [],
fixed: false,
sortable: true,
head: false,
},
{
prop: 'remarks',
label: '备注',

16
src/views/aftersales/aftersalesWorkOrder.vue

@ -1429,7 +1429,7 @@ const ButtonPermissions = computed(() => {
batchReject: UserPermissions.value != '仓库客服', //
assignment:false, //
applyArbitration: false, //
DingTalkNumber: UserPermissions.value == '总部客服经理', //
DingTalkNumber:false, //
batchFinish: UserPermissions.value != '仓库客服', //
appeal: false, //
ManagerConfirmed: false, //
@ -1444,6 +1444,7 @@ const ButtonPermissions = computed(() => {
batchReject: UserPermissions.value == '职能客服' || UserPermissions.value == '客服经理', //
assignment: false, //
applyArbitration: UserPermissions.value == '仓库客服', //
DingTalkNumber:false, //
batchFinish: UserPermissions.value != '仓库客服', //
Batchdetermination: UserPermissions.value != '仓库客服', //
appeal: false, //
@ -1459,6 +1460,7 @@ const ButtonPermissions = computed(() => {
batchReject: false, //
assignment: false, //
applyArbitration: false, //
DingTalkNumber:false, //
batchFinish: false, //
appeal: UserPermissions.value == '仓库客服' && AppealStatusT.value, //
Batchdetermination: UserPermissions.value == '仓库客服', //
@ -1477,6 +1479,7 @@ const ButtonPermissions = computed(() => {
batchFinish: UserPermissions.value != '仓库客服', //
appeal: false, //
Batchdetermination: false, //
DingTalkNumber:false, //
ManagerConfirmed: false, //
ArbitrationDetermination: false, //
Financial_accounting: false, //
@ -1491,6 +1494,7 @@ const ButtonPermissions = computed(() => {
applyArbitration: false, //
batchFinish: false, //
appeal: false, //
DingTalkNumber:false, //
Batchdetermination: false, //
ManagerConfirmed: false, //
ArbitrationDetermination: false, //
@ -1498,7 +1502,7 @@ const ButtonPermissions = computed(() => {
defaultassignments: false, //
export_Report: true, //
};
case 5: //
case 5: //
return {
add: false, //
batchReject: false, //
@ -1506,6 +1510,7 @@ const ButtonPermissions = computed(() => {
applyArbitration: false, //
batchFinish: false, //
appeal: false, //
DingTalkNumber: false, //
Batchdetermination: false, //
ManagerConfirmed: false, //
ArbitrationDetermination: true, //
@ -1520,11 +1525,12 @@ const ButtonPermissions = computed(() => {
assignment: false, //
applyArbitration: false, //
batchFinish: false, //
DingTalkNumber:UserPermissions.value == '总部客服经理' && !AppealStatusT.value, //, //
appeal: UserPermissions.value == '仓库客服', //
Batchdetermination: false, //
ManagerConfirmed: false, //
ArbitrationDetermination: false, //
Financial_accounting: true, //
Financial_accounting: true && !AppealStatusT.value, //
defaultassignments: false, //
export_Report: true, //
};
@ -3912,13 +3918,15 @@ const amountMoney = () => {
};
//
const Financialfillingbtn = () => {
if (!details.selectionList.length) {
ElMessage({
message: '请勾选选择要删除的数据',
message: '请勾选数据',
type: 'warning',
});
return;
}
FinancialFrom.value={}
dialogFinancialaccounting.value = true; //
};
//

282
src/views/supervise/IndicatorList.vue

@ -216,7 +216,7 @@
<el-dialog v-model="IndicatorEditing" title="编辑" width="30%">
<el-form v-loading="Indicatoreditingload" :model="lassificationformedit" label-width="70px">
<el-form-item label="考核部门">
<el-form-item label="考核部门" v-if="Assessmentstatus">
<el-tree-select
v-model="lassificationformedit.assessDept"
:data="AssessmentDepartment"
@ -226,7 +226,13 @@
@node-click="handleNodeClick"
/>
</el-form-item>
<el-form-item label="考核部门" v-else>
<el-input
v-model="lassificationformedit.assessDept"
disabled
placeholder="暂无考核部门"
/>
</el-form-item>
<el-form-item label="指标分类">
<el-select
v-model="lassificationformedit.indexClassification"
@ -238,8 +244,8 @@
<el-option
v-for="item in classificationoptions"
:key="item.id"
:label="item.name"
:value="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
@ -277,7 +283,11 @@
</el-form-item>
<el-form-item label="考核人">
<el-input v-model="lassificationformedit.assessUserName" placeholder="请输入考核人" />
<el-input
v-model="lassificationformedit.assessUserName"
disabled
placeholder="请输入考核人"
/>
</el-form-item>
<el-form-item label="分数备注">
@ -346,61 +356,61 @@ const lassificationform = ref({}); //分类表单
const lassificationformedit = ref({}); //
const title = ref(true); //
const EditID = ref(true); //ID
const currentPage=ref(1)
const currentPage = ref(1);
const newlyAdded = ref(false); //
const loadingAddPopup = ref(false); //
const selectionList = ref([]); //
const classificationoptions = ref([]); //
const searchFrom = ref({}); //
const Indicatoritems=ref([]);//
const Indicatoritems = ref([]); //
const drawerShow = ref(false); //
const search = ref(true); //
const department=ref();//
const department = ref(); //
const Indicatorediting = ref({}); //
const query=ref({});//
const query = ref({}); //
const columnList = ref();
const indicatorsValue = ref(0); //
const indicatorsValues = ref(1); //
const IndicatorScore=ref([]);//
const IndicatorScore = ref([]); //
const Assessmentstatus = ref(true); //
const Indicatoreditingload = ref(false); //
const AssessmentDepartment = ref([]); //
const tempRow = ref(); //
const url = '';
const srcList = [];
const onLoad = () => {
let data = {
current: current.value,
size: pageSize.value,
...query.value//
...query.value, //
};
loadingclassification.value = true; //
$_findIndicatorsList(data)
.then(res => {
console.log(res);
if (res.data.data.records) {
// 1 2 3
res.data.data.records.forEach(item=>{
if(item.indicatorsStatus ==1){
item.indicatorsStatus = '提交';
} else if(item.indicatorsStatus ==2){
item.indicatorsStatus = '审核通过';
} else if(item.indicatorsStatus ==3){
item.indicatorsStatus = '审核失败';
}
// 1 2 3
res.data.data.records.forEach(item => {
if (item.indicatorsStatus == 1) {
item.indicatorsStatus = '提交';
} else if (item.indicatorsStatus == 2) {
item.indicatorsStatus = '审核通过';
} else if (item.indicatorsStatus == 3) {
item.indicatorsStatus = '审核失败';
}
// 0 1
if(item.isObjection !=null){
if(item.isObjection){
// 0 1
if (item.isObjection != null) {
if (item.isObjection) {
item.isObjection = '没有';
}else{
} else {
item.isObjection = '存在';
}
}
})
}
});
classificationdata.value = res.data.data.records; //
}
total.value = res.data.data.total; //
})
@ -423,7 +433,6 @@ const currentChange = val => {
//
//
// $_parentId
const loadChildren = (targetList, parentId, indicatorValue) => {
let dataSub = { parentId };
return $_parentId(dataSub).then(Rs => {
@ -432,10 +441,10 @@ const loadChildren = (targetList, parentId, indicatorValue) => {
label: item.title,
id: item.id,
key: item.key,
hasChildren: item.hasChildren, // hasChildren
children: []
hasChildren: item.hasChildren, // hasChildren
children: [],
}));
function findAndReplace(target, value) {
for (let i = 0; i < target.length; i++) {
if (target[i].value === value) {
@ -447,12 +456,12 @@ const loadChildren = (targetList, parentId, indicatorValue) => {
}
}
}
findAndReplace(targetList, indicatorValue); // targetList
const childRequests = children
.filter(child => child.hasChildren)
.map(child => loadChildren(targetList, child.id, child.value)); // 使targetList
.map(child => loadChildren(targetList, child.id, child.value)); // 使targetList
//
return Promise.all(childRequests);
@ -460,8 +469,8 @@ const loadChildren = (targetList, parentId, indicatorValue) => {
};
//
const loadInitialCategories = () => {
let dataSub = { parentId: 0 };
const loadInitialCategories = (val = 0) => {
let dataSub = { parentId: val };
$_parentId(dataSub).then(res => {
console.log(res, '初始化顶级分类-------');
res.data.data.forEach(item => {
@ -471,13 +480,12 @@ const loadInitialCategories = () => {
id: item.id,
key: item.key,
hasChildren: item.hasChildren,
children: [] //
children: [], //
});
});
});
};
//
loadInitialCategories();
//
@ -498,14 +506,7 @@ const classification = (val, index) => {
console.log('分类不存在于当前的分类列表中');
}
};
//
const ClassificationDditing = val => {
console.log(val, '编辑');
EditID.value = val.row.id; //ID
let data = val.row;
IndicatorEditing.value = true; //
classification();
};
//
const Obtainclassification = () => {
$_selectParentCalssifyList().then(res => {
@ -518,7 +519,7 @@ const handleNodeClick = (data, node, component) => {
// 'node' Node
// 'component'
// console.log('You clicked:', data);
department.value = data;//
department.value = data; //
console.log(department.value, '当前点击的考核部门');
if (data.hasChildren) {
classification(data.id, data.value);
@ -533,22 +534,24 @@ const searcheNodeClick = (data, node, component) => {
// 'node' Node
// 'component'
// console.log('You clicked:', data);
department.value = data;//
department.value = data; //
console.log(department.value, '当前点击的考核部门');
if (data.hasChildren) {
classification(data.id, data.value);
}
// query.value.assessDeptName = data.label
query.value.assessDept = data.id
onLoad()
query.value.assessDept = data.id;
onLoad();
//
};
const Indicatortype=()=>{
query.value.parentClassifyId = classificationoptions.value.find(res=>res.id ==searchFrom.value.classifyId).id
const Indicatortype = () => {
query.value.parentClassifyId = classificationoptions.value.find(
res => res.id == searchFrom.value.classifyId
).id;
// searchFrom.classifyId
onLoad()
}
onLoad();
};
Obtainclassification();
//
const AddCategory = () => {};
@ -586,7 +589,6 @@ const BatchDelete = () => {
});
};
//
const CategoryDeletion = val => {
ElMessageBox.confirm(`是否删除${val.row.classifyName}分类?`, 'Warning', {
@ -678,31 +680,36 @@ const searchHide = () => {
search.value = !search.value;
};
//
const ClassificationChange=(val)=>{
const ClassificationChange = val => {
console.log(val);
classificationindicators(val)
}
classificationindicators(val);
};
//
const classificationindicators = (val) => {
$_selectChildCalssifyList({pid:val}).then(res => {
const classificationindicators = val => {
$_selectChildCalssifyList({ pid: val }).then(res => {
console.log(res, '分类列表');
if(res.data.data){
if (res.data.data) {
Indicatoritems.value = res.data.data;
}
});
};
const IndicatoritemsChange=(val)=>{
selectPointListChange(val)
}
const IndicatoritemsChange = val => {
selectPointListChange(val);
};
//
const selectPointListChange=(val)=>{
$_selectPointList({id:val}).then(res=>{
console.log(res,'分数列表');
if(res.data.data){
IndicatorScore.value= res.data.data
}
})
}
const selectPointListChange = val => {
$_selectPointList({ id: val }).then(res => {
console.log(res, '分数列表');
if (res.data.data) {
IndicatorScore.value = res.data.data;
if (!Assessmentstatus.value) {
lassificationformedit.value.IndicatorScore = IndicatorScore.value.find(
res => res.point == tempRow.value.point
).id;
}
}
});
};
//
const ClassificationIndicatorView = val => {
console.log(val, '查看信息');
@ -740,56 +747,119 @@ const ClassificationIndicatorView = val => {
loadingAddPopup.value = false; //
});
};
//
// @ApiModelProperty(value = "")
// private Long assessDept;
// @ApiModelProperty(value = "")
// private String assessDeptName;
// @ApiModelProperty(value = "")
// private Long assessUserId;
// @ApiModelProperty(value = "")
// private String assessUserName;
// @ApiModelProperty(value = "")
// private Long classifyId;
// @ApiModelProperty(value = "")
// private int point;
// @ApiModelProperty(value = "")
// private String remark;
// @ApiModelProperty(value = " 1 2 3 ")
// private Integer indicatorsStatus;
// @ApiModelProperty(value = " 0 1 ")
// private Integer isObjection;
// @ApiModelProperty(value = "")
// private String objectionRemark;
//
const ClassificationDditing = async val => {
tempRow.value = val.row; //便使
Assessmentstatus.value = false; //
console.log(val, '编辑');
IndicatorScore.value = []; //
Indicatoritems.value = []; //
lassificationformedit.value.IndicatorScore = ''; //
// lassificationformedit.value.Indicatoritems=''
ClassificationChange(val.row.parentClassifyId); //ID
IndicatoritemsChange(val.row.classifyId); //DI
lassificationformedit.value.indexClassification = val.row.parentClassifyId; //ID
lassificationformedit.value.Indicatoritems = val.row.classifyId; //ID
(lassificationformedit.value.assessDept = val.row.assessDeptName), //
//
(lassificationformedit.value.objectionRemark = val.row.objectionRemark), //
(lassificationformedit.value.textarea = val.row.remark), //
(lassificationformedit.value.assessUserName = val.row.assessUserName), //
//
// lassificationformedit.value.IndicatorScore = IndicatorScore.value.find(res=>res.point == val.row.point).id, //
(EditID.value = val.row.id); //ID
let data = val.row;
IndicatorEditing.value = true; //
classification();
};
//
const IndicatorEditingFn = () => {
console.log(lassificationformedit.value.assessDept,'考核部门');
let data = {
id: EditID.value,//id
assessDept: department.value.id, //ID
assessDeptName: department.value.label , //
assessUserId: '', //ID
assessUserName: lassificationformedit.value.assessUserName, //
point:IndicatorScore.value.find(res=>res.id ==lassificationformedit.value.IndicatorScore).point, //
id: EditID.value, //id
// assessDept: department.value.id, //ID
// assessDeptName: department.value.label , //
// assessUserId: '', //ID
// assessUserName: lassificationformedit.value.assessUserName, //
point: IndicatorScore.value.find(res => res.id == lassificationformedit.value.IndicatorScore)
.point, //
remark: lassificationformedit.value.textarea, //
objectionRemark: lassificationformedit.value.objectionRemark, //
//
classifyId: lassificationformedit.value.Indicatoritems, // ID
classifyName: Indicatoritems.value.find(
res => res.id == lassificationformedit.value.Indicatoritems
).name, //
};
console.log(data,'处理好的参数');
$_updateIndicators(data).then(res => {
console.log(res, '编辑成功');
if(res.data.code == 200){
IndicatorEditing.value = false; //
onLoad()
}
}).catch(res=>{
}).finally(()=>{
console.log(data, '处理好的参数');
});
$_updateIndicators(data)
.then(res => {
console.log(res, '编辑成功');
if (res.data.code == 200) {
IndicatorEditing.value = false; //
onLoad();
}
})
.catch(res => {})
.finally(() => {
Assessmentstatus.value = true; //
});
};
const searchChangeS = () => {
searchFrom.value = {}; //
query.value={}
query.value = {};
onLoad();
};
//
const searchChange = () => {
searchFrom.createTime
if(searchFrom.value.createTime){
query.value.startDateStr=searchFrom.value.createTime[0],
query.value.endDateStr=searchFrom.value.createTime[1]
searchFrom.createTime;
if (searchFrom.value.createTime) {
(query.value.startDateStr = searchFrom.value.createTime[0]),
(query.value.endDateStr = searchFrom.value.createTime[1]);
}
// ...searchFrom.value,
// ...searchFrom.value,
onLoad();
};
const timeChange = () => {
delete query.value.startDateStr;
delete query.value.endDateStr;
onLoad();
};
const timeChange=()=>{
delete query.value.startDateStr
delete query.value.endDateStr
onLoad();
}
</script>
<style scoped lang="scss">

Loading…
Cancel
Save