|
@@ -1,8 +1,12 @@
|
|
|
<template>
|
|
|
- <a-tree-select class="tree-select" allowClear style="width: 100%" :virtual="virtual" :multiple="multiple"
|
|
|
+ <a-tree-select v-if="isGetPopupContainer" class="tree-select" allowClear style="width: 100%" :virtual="virtual" :multiple="multiple"
|
|
|
:showSearch="false" :getPopupContainer="(node) => node.parentNode"
|
|
|
:dropdownStyle="{ maxHeight: '400px', overflow: 'auto', zIndex: 99999 }" :placeholder="placeholder"
|
|
|
:treeData="treeData" :value="treeValue" :field-names="fieldNames" @change="onChange" @search="onSearch" />
|
|
|
+ <a-tree-select v-else class="tree-select" allowClear style="width: 100%" :virtual="virtual" :multiple="multiple"
|
|
|
+ :showSearch="false"
|
|
|
+ :dropdownStyle="{ maxHeight: '400px', overflow: 'auto', zIndex: 99999 }" :placeholder="placeholder"
|
|
|
+ :treeData="treeData" :value="treeValue" :field-names="fieldNames" @change="onChange" @search="onSearch" />
|
|
|
</template>
|
|
|
<script lang="ts" setup>
|
|
|
/*
|
|
@@ -28,7 +32,8 @@
|
|
|
reload: propTypes.number.def(1),
|
|
|
isSearch: propTypes.bool.def(true),
|
|
|
virtual: propTypes.bool.def(true),
|
|
|
- api: propTypes.string.def('')
|
|
|
+ api: propTypes.string.def(''),
|
|
|
+ isGetPopupContainer:propTypes.bool.def(true),
|
|
|
});
|
|
|
const emit = defineEmits(['change', 'update:value']);
|
|
|
const { createMessage } = useMessage();
|
|
@@ -74,35 +79,1547 @@
|
|
|
treeData.value = treeDataValue;
|
|
|
}
|
|
|
}else{
|
|
|
-
|
|
|
- // try {
|
|
|
- // let res = await defHttp.get({ url: props.api, params });
|
|
|
- // if (res && res.success) {
|
|
|
- // const result = res.result
|
|
|
- // const datas = []
|
|
|
- // for (const key in result) {
|
|
|
- // datas.push(result[key])
|
|
|
- // }
|
|
|
- // const { buildTree } = toTree('id', 'parentId', 'name')
|
|
|
- // const treeDataList: any = buildTree(datas)
|
|
|
- // treeData.value = treeDataList;
|
|
|
- // }
|
|
|
- // } catch (error) {
|
|
|
- // const datas = []
|
|
|
- // for (const key in result) {
|
|
|
- // datas.push(result[key])
|
|
|
- // }
|
|
|
- // const { buildTree } = toTree('id', 'parentId', 'name')
|
|
|
- // const treeDataList: any = buildTree(datas)
|
|
|
- // treeData.value = treeDataList;
|
|
|
- // }
|
|
|
- const datas = []
|
|
|
- for (const key in result) {
|
|
|
- datas.push(result[key])
|
|
|
+ try {
|
|
|
+ let result;
|
|
|
+ const res = await defHttp.get({ url: props.api, params });
|
|
|
+ if (res && res.success) {
|
|
|
+ result = res.result
|
|
|
+ }else if(res){
|
|
|
+ result = res
|
|
|
+ }
|
|
|
+
|
|
|
+ result = {
|
|
|
+ "1": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "75",
|
|
|
+ "path": ",1,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "布尔台煤矿",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "1",
|
|
|
+ "position": "1",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "2": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "21224",
|
|
|
+ "path": ",1,2,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "行政办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "2",
|
|
|
+ "position": "10",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "3": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,3,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "矿领导",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "3",
|
|
|
+ "position": "2",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "5": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "86",
|
|
|
+ "path": ",1,5,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "经营办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "5",
|
|
|
+ "position": "9",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "6": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,6,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "安全监察管理办公室",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "6",
|
|
|
+ "position": "5",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "7": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "81",
|
|
|
+ "path": ",1,7,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "生产办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "7",
|
|
|
+ "position": "8",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "8": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,8,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "调度指挥中心",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "8",
|
|
|
+ "position": "4",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "9": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "87",
|
|
|
+ "path": ",1,9,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "综采一队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "9",
|
|
|
+ "position": "13",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "10": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "82",
|
|
|
+ "path": ",1,10,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "机电办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "10",
|
|
|
+ "position": "11",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "11": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "88",
|
|
|
+ "path": ",1,11,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "综采二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "11",
|
|
|
+ "position": "14",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "12": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10220",
|
|
|
+ "path": ",1,12,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "综采三队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "12",
|
|
|
+ "position": "15",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "13": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "89",
|
|
|
+ "path": ",1,13,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "掘锚一队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "13",
|
|
|
+ "position": "16",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "14": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10213",
|
|
|
+ "path": ",1,14,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "掘锚二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "14",
|
|
|
+ "position": "17",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "15": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10317",
|
|
|
+ "path": ",1,15,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "掘锚三队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "15",
|
|
|
+ "position": "18",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "16": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10302",
|
|
|
+ "path": ",1,16,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "掘锚六队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "16",
|
|
|
+ "position": "20",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "18": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10217",
|
|
|
+ "path": ",1,18,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "通风队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "18",
|
|
|
+ "position": "27",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "19": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10214",
|
|
|
+ "path": ",1,19,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "运转一队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "19",
|
|
|
+ "position": "22",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "20": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10215",
|
|
|
+ "path": ",1,20,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "运转二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "20",
|
|
|
+ "position": "23",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "21": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10216",
|
|
|
+ "path": ",1,21,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "机电一队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "21",
|
|
|
+ "position": "24",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "24": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "84",
|
|
|
+ "path": ",1,24,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "车队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "24",
|
|
|
+ "position": "30",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "25": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "10352",
|
|
|
+ "path": ",1,25,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "砼底板队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "25",
|
|
|
+ "position": "31",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "26": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "21228",
|
|
|
+ "path": ",1,26,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "准备二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "26",
|
|
|
+ "position": "32",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "28": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "21044",
|
|
|
+ "path": ",1,28,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "掘锚五队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "28",
|
|
|
+ "position": "19",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "29": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "25539",
|
|
|
+ "path": ",1,29,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "党委办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "29",
|
|
|
+ "position": "33",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "30": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "24829",
|
|
|
+ "path": ",1,30,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "工程队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "30",
|
|
|
+ "position": "37",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "31": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "24823",
|
|
|
+ "path": ",1,31,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "安装队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "31",
|
|
|
+ "position": "29",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "32": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "24824",
|
|
|
+ "path": ",1,32,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "钻探准备队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "32",
|
|
|
+ "position": "39",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "34": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "25824",
|
|
|
+ "path": ",1,34,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "机电二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "34",
|
|
|
+ "position": "25",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "35": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,35,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "掘锚七队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "35",
|
|
|
+ "position": "21",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "162": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "9305",
|
|
|
+ "path": ",311,162,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]安管办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "162",
|
|
|
+ "position": "194",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "164": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "9306",
|
|
|
+ "path": ",311,164,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]钻探队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "164",
|
|
|
+ "position": "195",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "167": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "20903",
|
|
|
+ "path": ",311,167,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]物探队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "167",
|
|
|
+ "position": "196",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "169": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21896",
|
|
|
+ "path": ",311,169,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]大柳塔站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "169",
|
|
|
+ "position": "197",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "170": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21897",
|
|
|
+ "path": ",311,170,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]补连塔站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "170",
|
|
|
+ "position": "198",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "171": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21898",
|
|
|
+ "path": ",311,171,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]上湾站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "171",
|
|
|
+ "position": "199",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "172": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21899",
|
|
|
+ "path": ",311,172,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]哈拉沟站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "172",
|
|
|
+ "position": "200",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "173": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21900",
|
|
|
+ "path": ",311,173,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]石圪台站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "173",
|
|
|
+ "position": "201",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "175": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21902",
|
|
|
+ "path": ",311,175,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]锦界站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "175",
|
|
|
+ "position": "202",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "185": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "21912",
|
|
|
+ "path": ",311,185,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]榆家梁站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "185",
|
|
|
+ "position": "203",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "276": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",276,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "贵宾",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "276",
|
|
|
+ "position": "298",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "284": {
|
|
|
+ "leader": "李政15",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,284,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "智能运维队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "284",
|
|
|
+ "position": "28",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "285": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",285,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "本矿车辆",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "285",
|
|
|
+ "position": "294",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "288": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",288,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "外委车辆",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "288",
|
|
|
+ "position": "295",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "311": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",311,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "311",
|
|
|
+ "position": "163",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "380": {
|
|
|
+ "leader": "白国勇",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,380,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "18047388802",
|
|
|
+ "name": "车辆管理组",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "380",
|
|
|
+ "position": "12",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "393": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "15011",
|
|
|
+ "path": ",311,393,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-[地]布尔台站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "393",
|
|
|
+ "position": "193",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "399": {
|
|
|
+ "leader": "高平",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,399,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地质防治水办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "399",
|
|
|
+ "position": "3",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "400": {
|
|
|
+ "leader": "任建慧33",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,400,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "18047388848",
|
|
|
+ "name": "矿压办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "400",
|
|
|
+ "position": "7",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "402": {
|
|
|
+ "leader": "潘吉成",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,402,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "通风办",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "402",
|
|
|
+ "position": "6",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "405": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",405,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "405",
|
|
|
+ "position": "277",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "406": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "100",
|
|
|
+ "path": ",405,406,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-中心领导",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "406",
|
|
|
+ "position": "289",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "412": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "100",
|
|
|
+ "path": ",405,412,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-寸草塔二矿",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "412",
|
|
|
+ "position": "288",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "413": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "101",
|
|
|
+ "path": ",405,413,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-寸草塔二矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "413",
|
|
|
+ "position": "287",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "414": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "102",
|
|
|
+ "path": ",405,414,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-大柳塔煤矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "414",
|
|
|
+ "position": "286",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "415": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "103",
|
|
|
+ "path": ",405,415,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-哈拉沟煤矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "415",
|
|
|
+ "position": "285",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "416": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "104",
|
|
|
+ "path": ",405,416,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-锦界煤矿管理处财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "416",
|
|
|
+ "position": "284",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "417": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "105",
|
|
|
+ "path": ",405,417,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-上湾煤矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "417",
|
|
|
+ "position": "283",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "418": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "106",
|
|
|
+ "path": ",405,418,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-神东露天煤矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "418",
|
|
|
+ "position": "282",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "419": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "107",
|
|
|
+ "path": ",405,419,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-乌兰木伦矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "419",
|
|
|
+ "position": "281",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "420": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "108",
|
|
|
+ "path": ",405,420,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-驻大柳塔煤矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "420",
|
|
|
+ "position": "280",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "467": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",405,467,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心-补连塔财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "467",
|
|
|
+ "position": "279",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "469": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "核算中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "405",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",405,469,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "核算中心--驻布尔台矿财务科",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "469",
|
|
|
+ "position": "278",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "470": {
|
|
|
+ "leader": "张新祯25",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,470,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "巷道维修队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "470",
|
|
|
+ "position": "34",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "471": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",471,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "生产服务中心车队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "471",
|
|
|
+ "position": "291",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "489": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",489,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "布尔台煤矿-[地]布尔台站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "489",
|
|
|
+ "position": "297",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "499": {
|
|
|
+ "leader": "姚涛",
|
|
|
+ "parentDepartment": "开拓准备中心",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "310",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",310,499,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "综掘六队",
|
|
|
+ "departmentTypeName": "作业部门",
|
|
|
+ "id": "499",
|
|
|
+ "position": "42",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "501": {
|
|
|
+ "leader": "郝斌",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,501,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "机电三队",
|
|
|
+ "departmentTypeName": "作业部门",
|
|
|
+ "id": "501",
|
|
|
+ "position": "26",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "503": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,503,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "中铁十一局",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "503",
|
|
|
+ "position": "40",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "524": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "0",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",524,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "专业化单位",
|
|
|
+ "departmentTypeName": "作业部门",
|
|
|
+ "id": "524",
|
|
|
+ "position": "301",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "525": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,525,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "准备三队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "525",
|
|
|
+ "position": "35",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "536": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200111",
|
|
|
+ "path": ",311,536,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-地测领导",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "536",
|
|
|
+ "position": "192",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "537": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200112",
|
|
|
+ "path": ",311,537,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-党委办公室?(行政办公室)",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "537",
|
|
|
+ "position": "191",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "538": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200113",
|
|
|
+ "path": ",311,538,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-经营办公室",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "538",
|
|
|
+ "position": "190",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "539": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200114",
|
|
|
+ "path": ",311,539,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-生产技术办公室",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "539",
|
|
|
+ "position": "189",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "540": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200115",
|
|
|
+ "path": ",311,540,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-安全监察管理办公室",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "540",
|
|
|
+ "position": "188",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "541": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200116",
|
|
|
+ "path": ",311,541,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-设备管理办公室",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "541",
|
|
|
+ "position": "187",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "542": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200117",
|
|
|
+ "path": ",311,542,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-大柳塔地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "542",
|
|
|
+ "position": "186",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "543": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200119",
|
|
|
+ "path": ",311,543,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-补连塔地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "543",
|
|
|
+ "position": "185",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "544": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200120",
|
|
|
+ "path": ",311,544,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-布尔台地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "544",
|
|
|
+ "position": "184",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "545": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200121",
|
|
|
+ "path": ",311,545,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-锦界地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "545",
|
|
|
+ "position": "183",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "546": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200122",
|
|
|
+ "path": ",311,546,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-哈拉沟地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "546",
|
|
|
+ "position": "182",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "547": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200124",
|
|
|
+ "path": ",311,547,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-石圪台地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "547",
|
|
|
+ "position": "181",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "548": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200125",
|
|
|
+ "path": ",311,548,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-上湾地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "548",
|
|
|
+ "position": "180",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "549": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200126",
|
|
|
+ "path": ",311,549,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-榆家梁地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "549",
|
|
|
+ "position": "179",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "550": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200123",
|
|
|
+ "path": ",311,550,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-乌兰木伦地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "550",
|
|
|
+ "position": "178",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "551": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200128",
|
|
|
+ "path": ",311,551,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-柳塔地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "551",
|
|
|
+ "position": "177",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "552": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200129",
|
|
|
+ "path": ",311,552,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-寸草塔地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "552",
|
|
|
+ "position": "176",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "553": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200130",
|
|
|
+ "path": ",311,553,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-寸草塔二矿地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "553",
|
|
|
+ "position": "175",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "554": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200131",
|
|
|
+ "path": ",311,554,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-地方煤矿监测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "554",
|
|
|
+ "position": "174",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "555": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200132",
|
|
|
+ "path": ",311,555,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-大柳塔三盘区管理处地测站",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "555",
|
|
|
+ "position": "173",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "556": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200133",
|
|
|
+ "path": ",311,556,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-测量队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "556",
|
|
|
+ "position": "172",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "557": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200134",
|
|
|
+ "path": ",311,557,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-勘探队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "557",
|
|
|
+ "position": "171",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "558": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200135",
|
|
|
+ "path": ",311,558,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-物探队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "558",
|
|
|
+ "position": "170",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "559": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200136",
|
|
|
+ "path": ",311,559,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-地测探放水一队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "559",
|
|
|
+ "position": "169",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "560": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200137",
|
|
|
+ "path": ",311,560,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-地测探放水二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "560",
|
|
|
+ "position": "168",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "561": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200138",
|
|
|
+ "path": ",311,561,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-维修队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "561",
|
|
|
+ "position": "167",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "562": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200139",
|
|
|
+ "path": ",311,562,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-防灭火队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "562",
|
|
|
+ "position": "166",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "563": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200140",
|
|
|
+ "path": ",311,563,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-大龄转岗人员",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "563",
|
|
|
+ "position": "165",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "564": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "地测公司",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "311",
|
|
|
+ "number": "200110",
|
|
|
+ "path": ",311,564,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "地测公司-党委办公室",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "564",
|
|
|
+ "position": "164",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "565": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,565,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "安装二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "565",
|
|
|
+ "position": "38",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ },
|
|
|
+ "566": {
|
|
|
+ "leader": "",
|
|
|
+ "parentDepartment": "布尔台煤矿",
|
|
|
+ "departmentTypeId": "0",
|
|
|
+ "parentId": "1",
|
|
|
+ "number": "0",
|
|
|
+ "path": ",1,566,",
|
|
|
+ "companyUnit": "本矿",
|
|
|
+ "telphone": "",
|
|
|
+ "name": "砼底板二队",
|
|
|
+ "departmentTypeName": "其他部门",
|
|
|
+ "id": "566",
|
|
|
+ "position": "36",
|
|
|
+ "companyUnitId": "1"
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if(result && JSON.stringify(result) !== "{}"){
|
|
|
+ const datas:any[] = []
|
|
|
+ for (const key in result) {
|
|
|
+ datas.push(result[key])
|
|
|
+ }
|
|
|
+ const { buildTree } = toTree('id', 'parentId', 'name')
|
|
|
+ const treeDataList: any = buildTree(datas)
|
|
|
+ treeData.value = treeDataList;
|
|
|
+ }
|
|
|
+
|
|
|
+ } catch (error) {
|
|
|
+ //
|
|
|
}
|
|
|
- const { buildTree } = toTree('id', 'parentId', 'name')
|
|
|
- const treeDataList: any = buildTree(datas)
|
|
|
- treeData.value = treeDataList;
|
|
|
|
|
|
}
|
|
|
|