|
|
|
@ -67,30 +67,29 @@
|
|
|
|
|
</el-row> |
|
|
|
|
|
|
|
|
|
<!-- 首页表格 --> |
|
|
|
|
<el-row> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
:columnList="managementColumnList" |
|
|
|
|
:tableData="classificationdata" |
|
|
|
|
:loading="loadingclassification" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<div class="ElBtnClass"> |
|
|
|
|
<el-button text @click="ClassificationDditing(slotProps.scope)">编辑</el-button> |
|
|
|
|
<el-button text type="primary" @click="CategoryDeletion(slotProps.scope)" |
|
|
|
|
>删除</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
<!-- 列表模块 --> |
|
|
|
|
<tablecmt |
|
|
|
|
ref="tableNode" |
|
|
|
|
:columnList="managementColumnList" |
|
|
|
|
:tableData="classificationdata" |
|
|
|
|
:loading="loadingclassification" |
|
|
|
|
@inputTxt="inputsc" |
|
|
|
|
@timeCheck="timesc" |
|
|
|
|
@btnCheck="btnsc" |
|
|
|
|
@selectCheck="selectsc" |
|
|
|
|
@selection="selectionChange" |
|
|
|
|
> |
|
|
|
|
<template #default="slotProps"> |
|
|
|
|
<template v-if="slotProps.scope.column.label === '操作'"> |
|
|
|
|
<div class="ElBtnClass"> |
|
|
|
|
<el-button text @click="ClassificationDditing(slotProps.scope)">编辑</el-button> |
|
|
|
|
<el-button text type="primary" @click="CategoryDeletion(slotProps.scope)" |
|
|
|
|
>删除</el-button |
|
|
|
|
> |
|
|
|
|
</div> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
</el-row> |
|
|
|
|
</template> |
|
|
|
|
</tablecmt> |
|
|
|
|
|
|
|
|
|
<!-- 分页模块 --> |
|
|
|
|
<el-row class="el-fy"> |
|
|
|
@ -248,7 +247,7 @@ import {
|
|
|
|
|
$_classifupdateChild, |
|
|
|
|
$_parentId, |
|
|
|
|
} from '@/api/classify/classify'; |
|
|
|
|
import { isNumber } from '@/utils/util'; |
|
|
|
|
import { isNumber, setNodeHeight } from '@/utils/util'; |
|
|
|
|
const loadingclassification = ref(false); //指标分类加载效果 |
|
|
|
|
const classificationdata = ref([]); //指标分类数据 |
|
|
|
|
const current = ref(1); //当前页 |
|
|
|
@ -274,6 +273,9 @@ const drawerShow = ref(false); //抽屉显示
|
|
|
|
|
const department = ref(); //考核部门存储 |
|
|
|
|
const examineDeptName = ref(''); //考核部门名字 |
|
|
|
|
|
|
|
|
|
/** 表格实例 */ |
|
|
|
|
const tableNode = ref(); |
|
|
|
|
|
|
|
|
|
// 获取分类指标 |
|
|
|
|
// 在外部定义递归函数,用于加载和更新分类 |
|
|
|
|
const loadChildren = (targetList, parentId, indicatorValue) => { |
|
|
|
@ -314,7 +316,7 @@ const loadChildren = (targetList, parentId, indicatorValue) => {
|
|
|
|
|
// 当分类项被点击时调用 |
|
|
|
|
const classification = (val, index) => { |
|
|
|
|
console.log(index, '当前点击的谁'); |
|
|
|
|
console.log(val,'val222'); |
|
|
|
|
console.log(val, 'val222'); |
|
|
|
|
const currentCategory = AssessmentDepartment.value.find(category => category.value === index); |
|
|
|
|
if (currentCategory) { |
|
|
|
|
if (currentCategory.hasChildren && currentCategory.children.length === 0) { |
|
|
|
@ -330,16 +332,15 @@ const classification = (val, index) => {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 初始时获取顶级分类 |
|
|
|
|
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) |
|
|
|
|
setTimeout(() => { |
|
|
|
|
classification(item.id, item.value); |
|
|
|
|
}, 0); |
|
|
|
|
department.value = item.id; |
|
|
|
|
AssessmentDepartment.value.push({ |
|
|
|
|
value: item.value, |
|
|
|
@ -354,8 +355,6 @@ const loadInitialCategories = (val = 0) => {
|
|
|
|
|
}; |
|
|
|
|
loadInitialCategories(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const handleNodeClick = (data, node, component) => { |
|
|
|
|
// 'data' 是点击的节点数据 |
|
|
|
|
// 'node' 是 Node 对象 |
|
|
|
@ -363,8 +362,8 @@ const handleNodeClick = (data, 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'); |
|
|
|
|
console.log(data.id, 'data.id'); |
|
|
|
|
console.log(data.value, 'data.value'); |
|
|
|
|
if (data.hasChildren) { |
|
|
|
|
classification(data.id, data.value); |
|
|
|
|
} |
|
|
|
@ -540,6 +539,8 @@ const BatchDelete = () => {
|
|
|
|
|
// 放大镜搜索 |
|
|
|
|
const searchHide = () => { |
|
|
|
|
search.value = !search.value; |
|
|
|
|
|
|
|
|
|
setNodeHeight(tableNode.value.$el, '', true); |
|
|
|
|
}; |
|
|
|
|
// 分类删除 |
|
|
|
|
const CategoryDeletion = val => { |
|
|
|
@ -772,7 +773,7 @@ const handleClose = res => {
|
|
|
|
|
margin-right: 0; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
.maboxhi { |
|
|
|
|
height: 700px !important; |
|
|
|
|
} |
|
|
|
|
// .maboxhi { |
|
|
|
|
// height: 700px !important; |
|
|
|
|
// } |
|
|
|
|
</style> |
|
|
|
|