|
|
|
@ -120,13 +120,16 @@
|
|
|
|
|
label-width="120px" |
|
|
|
|
ref="ruleFormRef" |
|
|
|
|
> |
|
|
|
|
<el-form-item label="考核部门"> |
|
|
|
|
<el-form-item label="归属部门"> |
|
|
|
|
<el-input v-model="departmentName" placeholder="暂无归属部门" disabled/> |
|
|
|
|
</el-form-item> |
|
|
|
|
<el-form-item label="考核范围" prop="examineDeptId"> |
|
|
|
|
<el-tree-select |
|
|
|
|
v-model="lassificationform.examineDeptId" |
|
|
|
|
:data="AssessmentDepartment" |
|
|
|
|
check-strictly |
|
|
|
|
:render-after-expand="false" |
|
|
|
|
style="width: 240px" |
|
|
|
|
style="width: 100%" |
|
|
|
|
@node-click="handleNodeClick" |
|
|
|
|
ref="treeSelectRef" |
|
|
|
|
/> |
|
|
|
@ -273,7 +276,13 @@ const columnList = ref([]);
|
|
|
|
|
const drawerShow = ref(false); //抽屉显示 |
|
|
|
|
const department = ref(); //考核部门存储 |
|
|
|
|
const examineDeptName = ref(''); //考核部门名字 |
|
|
|
|
|
|
|
|
|
const departmentName =ref('');//归属名称 |
|
|
|
|
const departmentNameID =ref('');//归属ID |
|
|
|
|
let my_DATA=JSON.parse(localStorage.getItem('my_data')) |
|
|
|
|
departmentName.value = my_DATA.departmentName//归属名称 |
|
|
|
|
departmentNameID.value = my_DATA.department//归属名称ID |
|
|
|
|
console.log(departmentName.value,'归属名称'); |
|
|
|
|
console.log(departmentNameID.value,'归属名称ID'); |
|
|
|
|
// 获取分类指标 |
|
|
|
|
// 在外部定义递归函数,用于加载和更新分类 |
|
|
|
|
const loadChildren = (targetList, parentId, indicatorValue) => { |
|
|
|
@ -374,7 +383,6 @@ const handleNodeClick = (data, node, component) => {
|
|
|
|
|
|
|
|
|
|
/** 必填 */ |
|
|
|
|
const rules = ref({ |
|
|
|
|
/** 发站仓名称 */ |
|
|
|
|
classificationoptionsvalue: [ |
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
@ -389,6 +397,13 @@ const rules = ref({
|
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
], |
|
|
|
|
examineDeptId:[ |
|
|
|
|
{ |
|
|
|
|
required: true, |
|
|
|
|
message: '请选择指考核范围', |
|
|
|
|
trigger: ['change', 'blur'], |
|
|
|
|
}, |
|
|
|
|
] |
|
|
|
|
}); |
|
|
|
|
const details = reactive({ |
|
|
|
|
/** 弹窗 */ |
|
|
|
|