|
|
|
@ -73,17 +73,19 @@
|
|
|
|
|
<div class="avue-crud__header"> |
|
|
|
|
<!-- 头部左侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__left"> |
|
|
|
|
<el-button type="primary" @click="AddCategory"> |
|
|
|
|
<el-button type="primary" @click="AddCategory" v-if="PermissionButton.Classification_add"> |
|
|
|
|
<el-icon><Plus /></el-icon>新 增</el-button |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click="BatchDelete" icon="Delete"> |
|
|
|
|
<el-button type="primary" @click="BatchDelete" icon="Delete" v-if="PermissionButton.Category_deletion"> |
|
|
|
|
批量删除</el-button |
|
|
|
|
> |
|
|
|
|
|
|
|
|
|
<el-button type="primary" @click="details.popUpShow.UploadBatch = true" icon="Upload"> |
|
|
|
|
<el-button type="primary" @click="details.popUpShow.UploadBatch = true" icon="Upload" v-if="PermissionButton.Classification_import"> |
|
|
|
|
导入 |
|
|
|
|
</el-button> |
|
|
|
|
<el-button type="primary" v-if="PermissionButton.Category_View" class="el_view"> |
|
|
|
|
查看 |
|
|
|
|
</el-button> |
|
|
|
|
</div> |
|
|
|
|
<!-- 头部右侧按钮模块 --> |
|
|
|
|
<div class="avue-crud__right"> |
|
|
|
@ -270,6 +272,7 @@ import { ref, reactive, computed, onMounted } from 'vue';
|
|
|
|
|
import { managementColumnList } from '@/option/supervise/supervise.js'; |
|
|
|
|
import functions from '@/utils/functions.js'; |
|
|
|
|
import { getToken } from '@/utils/auth'; |
|
|
|
|
import { useRouter } from 'vue-router'; |
|
|
|
|
import { |
|
|
|
|
$_Getclassify, |
|
|
|
|
$_newlyadded, |
|
|
|
@ -281,6 +284,9 @@ import {
|
|
|
|
|
} from '@/api/classify/classify'; |
|
|
|
|
import { isNumber, setNodeHeight } from '@/utils/util'; |
|
|
|
|
const loadingclassification = ref(false); //指标分类加载效果 |
|
|
|
|
const $useStore = useStore(); |
|
|
|
|
const accessControl = $useStore.getters.permission; |
|
|
|
|
console.log(accessControl,'按钮权限'); |
|
|
|
|
const classificationdata = ref([]); //指标分类数据 |
|
|
|
|
const current = ref(1); //当前页 |
|
|
|
|
const total = ref(0); //总页数 |
|
|
|
@ -314,6 +320,14 @@ departmentNameTemp.value = my_DATA.departmentName; //归属名称
|
|
|
|
|
departmentNameID.value = my_DATA.department; //归属名称ID |
|
|
|
|
console.log(departmentName.value, '归属名称'); |
|
|
|
|
console.log(departmentNameID.value, '归属名称ID'); |
|
|
|
|
const PermissionButton = computed(() => { |
|
|
|
|
return { |
|
|
|
|
Classification_add: accessControl.Classification_add, //新增 |
|
|
|
|
Category_deletion:accessControl.Category_deletion, //删除 |
|
|
|
|
Classification_import:accessControl.Classification_import, //导入 |
|
|
|
|
Category_View:accessControl.Category_View, //查看 |
|
|
|
|
}; |
|
|
|
|
}); |
|
|
|
|
// 获取分类指标 |
|
|
|
|
// 在外部定义递归函数,用于加载和更新分类 |
|
|
|
|
const loadChildren = (targetList, parentId, indicatorValue) => { |
|
|
|
@ -884,4 +898,7 @@ const handleClose = res => {
|
|
|
|
|
// .maboxhi { |
|
|
|
|
// height: 700px !important; |
|
|
|
|
// } |
|
|
|
|
.el_view{ |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|