Files
admin-govern/src/components/tree/point.vue

413 lines
14 KiB
Vue
Raw Normal View History

2024-06-27 09:39:53 +08:00
<!-- 设备监控使用折叠面板渲染多个tree -->
<template>
<div :style="{ width: menuCollapse ? '40px' : props.width }" style="display: flex; overflow: hidden">
<!-- <Icon
2026-01-04 14:55:31 +08:00
v-show="menuCollapse"
@click="onMenuCollapse"
:name="menuCollapse ? 'el-icon-Expand' : 'el-icon-Fold'"
:class="menuCollapse ? 'unfold' : ''"
size="18px"
2026-01-04 14:55:31 +08:00
class="fold ml10 mt20 menu-collapse"
style="cursor: pointer"
v-if="route.path != '/admin/govern/reportCore/statistics/index'"
/> -->
2024-12-23 11:30:28 +08:00
<div class="cn-tree" :style="{ opacity: menuCollapse ? 0 : 1, display: menuCollapse ? 'none' : '' }">
2024-06-27 09:39:53 +08:00
<div style="display: flex; align-items: center" class="mb10">
<el-input maxlength="32" v-model.trim="filterText" placeholder="请输入内容" clearable>
2026-03-06 09:36:42 +08:00
<template #prepend>
<el-select v-model="treeType" @change="changeTreeType" style="min-width: 75px">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</template>
2024-06-27 09:39:53 +08:00
<template #prefix>
<Icon name="el-icon-Search" style="font-size: 16px" />
</template>
</el-input>
<!-- <Icon
2026-01-04 14:55:31 +08:00
@click="onMenuCollapse"
:name="menuCollapse ? 'el-icon-Expand' : 'el-icon-Fold'"
:class="menuCollapse ? 'unfold' : ''"
size="18px"
2026-01-04 14:55:31 +08:00
class="fold ml10 menu-collapse"
2024-06-27 09:39:53 +08:00
style="cursor: pointer"
2026-01-04 14:55:31 +08:00
v-if="props.canExpand && route.path != '/admin/govern/reportCore/statistics/index'"
/> -->
2024-06-27 09:39:53 +08:00
</div>
2026-01-04 14:55:31 +08:00
<el-collapse
:accordion="true"
v-model="activeName"
2026-01-04 14:55:31 +08:00
style="flex: 1; height: 100%"
@change="changeDevice"
2026-03-06 09:36:42 +08:00
v-if="treeType == '1'"
v-loading="loading"
2026-01-04 14:55:31 +08:00
>
<el-collapse-item title="治理设备" name="0" v-if="zlDeviceData.length">
<el-select v-model="process" clearable placeholder="请选择状态" class="mb10">
<el-option label="功能调试" value="2" />
<el-option label="出厂调试" value="3" />
<el-option label="正式投运" value="4" />
</el-select>
2024-06-27 09:39:53 +08:00
<el-tree
:style="{ height: governTreeHeight }"
2026-01-04 14:55:31 +08:00
ref="treeRef1"
:props="defaultProps"
highlight-current
:filter-node-method="filterNode"
node-key="id"
v-bind="$attrs"
:data="zlDevList"
style="overflow: auto"
:default-expand-all="false"
>
<template #default="{ node, data: nodeData }">
2024-06-27 09:39:53 +08:00
<span class="custom-tree-node">
2026-01-04 14:55:31 +08:00
<Icon
:name="nodeData.icon"
2026-01-04 14:55:31 +08:00
style="font-size: 16px"
:style="{ color: nodeData.color }"
v-if="nodeData.icon"
2026-01-04 14:55:31 +08:00
/>
2024-06-27 09:39:53 +08:00
<span style="margin-left: 4px">{{ node.label }}</span>
</span>
</template>
</el-tree>
</el-collapse-item>
<el-collapse-item title="便携式设备" name="1" v-if="bxsDeviceData.length">
2024-06-27 09:39:53 +08:00
<el-tree
:style="{ height: otherTreeHeight }"
2026-01-04 14:55:31 +08:00
ref="treeRef2"
:props="defaultProps"
highlight-current
:default-expand-all="false"
:filter-node-method="filterNode"
node-key="id"
:data="bxsDeviceData"
v-bind="$attrs"
style="overflow: auto"
>
<template #default="{ node, data: nodeData }">
2024-06-27 09:39:53 +08:00
<span class="custom-tree-node">
2026-01-04 14:55:31 +08:00
<Icon
:name="nodeData.icon"
2026-01-04 14:55:31 +08:00
style="font-size: 16px"
:style="{ color: nodeData.color }"
v-if="nodeData.icon"
2026-01-04 14:55:31 +08:00
/>
2024-06-27 09:39:53 +08:00
<span style="margin-left: 4px">{{ node.label }}</span>
</span>
</template>
</el-tree>
</el-collapse-item>
<el-collapse-item title="监测设备" name="2" v-if="yqfDeviceData.length">
2025-10-11 10:35:25 +08:00
<el-tree
:style="{ height: otherTreeHeight }"
2026-01-04 14:55:31 +08:00
ref="treeRef3"
:props="defaultProps"
highlight-current
:default-expand-all="false"
:filter-node-method="filterNode"
node-key="id"
:data="yqfDeviceData"
v-bind="$attrs"
style="overflow: auto"
>
<template #default="{ node, data: nodeData }">
2025-10-11 10:35:25 +08:00
<span class="custom-tree-node">
2026-01-04 14:55:31 +08:00
<Icon
:name="nodeData.icon"
2026-01-04 14:55:31 +08:00
style="font-size: 16px"
:style="{ color: nodeData.color }"
v-if="nodeData.icon"
2026-01-04 14:55:31 +08:00
/>
2025-10-11 10:35:25 +08:00
<span style="margin-left: 4px">{{ node.label }}</span>
</span>
</template>
</el-tree>
</el-collapse-item>
2024-06-27 09:39:53 +08:00
</el-collapse>
2026-03-06 09:36:42 +08:00
<div v-if="treeType == '2'" v-loading="loading">
<el-tree
:style="{ height: engineeringTreeHeight }"
2026-03-06 09:36:42 +08:00
class="pt10"
ref="treeRef4"
:props="defaultProps"
highlight-current
:filter-node-method="filterNode"
node-key="id"
v-bind="$attrs"
:data="props.data"
2026-03-06 09:36:42 +08:00
style="overflow: auto"
:default-expand-all="false"
>
<template #default="{ node, data: nodeData }">
2026-03-06 09:36:42 +08:00
<span class="custom-tree-node">
<Icon
:name="nodeData.icon"
2026-03-06 09:36:42 +08:00
style="font-size: 16px"
:style="{ color: nodeData.color }"
v-if="nodeData.icon"
2026-03-06 09:36:42 +08:00
/>
<span style="margin-left: 4px">{{ node.label }}</span>
</span>
</template>
</el-tree>
</div>
2024-06-27 09:39:53 +08:00
</div>
</div>
</template>
<script lang="ts" setup>
import useCurrentInstance from '@/utils/useCurrentInstance'
import { ElTree, type CollapseModelValue } from 'element-plus'
import { ref, watch, nextTick, computed } from 'vue'
import { useRoute } from 'vue-router'
import { collectDeviceLeaves } from './govern/lineTreeUtils'
2024-06-27 09:39:53 +08:00
defineOptions({
name: 'govern/point',
inheritAttrs: false
2024-06-27 09:39:53 +08:00
})
2026-03-06 09:36:42 +08:00
const emit = defineEmits(['changePointType', 'changeTreeType'])
2024-06-27 09:39:53 +08:00
interface Props {
width?: string
canExpand?: boolean
type?: string
data?: any[]
2024-06-27 09:39:53 +08:00
}
const props = withDefaults(defineProps<Props>(), {
2024-07-22 10:35:01 +08:00
width: '100%',
2024-06-27 09:39:53 +08:00
canExpand: true,
type: '',
data: () => []
2024-06-27 09:39:53 +08:00
})
const route = useRoute()
2024-06-27 09:39:53 +08:00
const { proxy } = useCurrentInstance()
2026-03-06 09:36:42 +08:00
const treeType = ref('1')
const options = [
{ label: '设备', value: '1' },
{ label: '工程', value: '2' }
2026-03-06 09:36:42 +08:00
]
const menuCollapse = ref(false)
const activeName = ref('0')
const filterText = ref('')
const process = ref('')
const loading = ref(false)
const defaultProps = { label: 'name', value: 'id' }
const zlDeviceData = ref<any[]>([])
const zlDevList = ref<any[]>([])
const bxsDeviceData = ref<any[]>([])
const yqfDeviceData = ref<any[]>([])
const governTreeHeight = computed(() => 'calc(100vh - 380px)')
const otherTreeHeight = computed(() =>
zlDeviceData.value.length ? 'calc(100vh - 340px)' : 'calc(100vh - 238px)'
2024-06-27 09:39:53 +08:00
)
const engineeringTreeHeight = computed(() => 'calc(100vh - 188px)')
2024-06-27 09:39:53 +08:00
const treeRef1 = ref<InstanceType<typeof ElTree>>()
const treeRef2 = ref<InstanceType<typeof ElTree>>()
const treeRef3 = ref<InstanceType<typeof ElTree>>()
const treeRef4 = ref<InstanceType<typeof ElTree>>()
2025-10-31 10:23:22 +08:00
defineExpose({ treeRef1, treeRef2, treeRef3, treeRef4 })
function splitTreeData(val: any[]) {
zlDeviceData.value = []
bxsDeviceData.value = []
yqfDeviceData.value = []
val.forEach(item => {
if (item.name === '治理设备') {
zlDeviceData.value = item.children ?? []
} else if (item.name === '便携式设备') {
bxsDeviceData.value = item.children ?? []
} else if (item.name === '监测设备') {
yqfDeviceData.value = item.children ?? []
}
2025-10-11 10:35:25 +08:00
})
zlDevList.value = filterProcess(JSON.parse(JSON.stringify(zlDeviceData.value)))
2024-12-17 20:57:07 +08:00
}
2025-10-31 10:23:22 +08:00
/** 测点树专用level=2 按 process 过滤,其余层级保留有子节点或匹配的节点 */
function filterProcess(nodes: any[]): any[] {
if (!process.value) return nodes
return nodes
.map(node => {
const children = node.children ? filterProcess(node.children) : []
2025-10-31 10:23:22 +08:00
if (node.level === 2) {
if (node.process == process.value) {
return { ...node, children }
2025-10-31 10:23:22 +08:00
}
return null
}
2025-07-15 16:31:06 +08:00
if (children.length > 0 || node.process == process.value || !node.children?.length) {
return { ...node, children }
}
2024-12-17 20:57:07 +08:00
return null
})
.filter(Boolean)
}
2025-10-31 10:23:22 +08:00
function getActiveTreeRef() {
if (treeType.value === '2') return treeRef4.value
if (activeName.value === '0') return treeRef1.value
if (activeName.value === '1') return treeRef2.value
return treeRef3.value
}
function resolveActiveName() {
if (zlDeviceData.value.length) return '0'
if (bxsDeviceData.value.length) return '1'
if (yqfDeviceData.value.length) return '2'
return ''
}
function selectPointPanel(panelName: string, node?: any) {
if (!node) return
emit('changePointType', panelName, node)
nextTick(() => {
getActiveTreeRef()?.setCurrentKey(node.id)
})
}
const changeDevice = (val: CollapseModelValue) => {
if (Array.isArray(val) || val == null || val === '') return
const panelName = String(val)
const { govern, portable, monitor } = collectDeviceLeaves(
zlDevList.value,
bxsDeviceData.value,
yqfDeviceData.value
)
const panelMap: Record<string, { nodes: any[]; clearOthers: any[][] }> = {
'0': { nodes: govern, clearOthers: [portable, monitor] },
'1': { nodes: portable, clearOthers: [govern, monitor] },
'2': { nodes: monitor, clearOthers: [govern, portable] }
2024-12-17 20:57:07 +08:00
}
const panel = panelMap[panelName]
if (!panel) return
panel.clearOthers.forEach(list => list.forEach(item => (item.checked = false)))
selectPointPanel(panelName, panel.nodes[0])
2024-06-27 09:39:53 +08:00
}
2026-03-06 09:36:42 +08:00
const setActiveName = () => {
activeName.value = resolveActiveName()
if (activeName.value) {
nextTick(() => changeDevice(activeName.value))
2026-03-06 09:36:42 +08:00
}
}
watch(
() => props.data,
val => {
if (!val?.length) return
splitTreeData(val)
if (treeType.value === '1') {
nextTick(() => setActiveName())
}
},
{ immediate: true, deep: true }
)
watch(filterText, val => {
getActiveTreeRef()?.filter(val)
})
watch(process, () => {
zlDevList.value = filterProcess(JSON.parse(JSON.stringify(zlDeviceData.value)))
if (activeName.value === '0') {
nextTick(() => changeDevice(activeName.value))
2026-03-06 09:36:42 +08:00
}
})
const onMenuCollapse = () => {
menuCollapse.value = !menuCollapse.value
proxy.eventBus.emit('cnTreeCollapse', menuCollapse)
}
const filterNode = (value: string, data: any, node: any): boolean => {
if (!value) return true
if (!data.name) return false
return chooseNode(value, data, node)
}
const chooseNode = (value: string, data: any, node: any): boolean => {
if (data.name.indexOf(value) !== -1) return true
const level = node.level
if (level === 1) return false
let parentData = node.parent
for (let i = 0; i < level - 1; i++) {
if (parentData?.data?.name?.indexOf(value) !== -1) return true
parentData = parentData.parent
2026-03-06 09:36:42 +08:00
}
return false
2026-03-06 09:36:42 +08:00
}
2026-03-06 09:36:42 +08:00
const changeTreeType = (val: string) => {
loading.value = true
emit('changeTreeType', val)
if (val === '1') {
nextTick(() => setActiveName())
2026-03-06 09:36:42 +08:00
}
setTimeout(() => {
loading.value = false
}, 300)
2026-03-06 09:36:42 +08:00
}
2024-06-27 09:39:53 +08:00
</script>
<style lang="scss" scoped>
.cn-tree {
flex-shrink: 0;
display: flex;
flex-direction: column;
box-sizing: border-box;
padding: 10px;
height: 100%;
2024-12-23 11:30:28 +08:00
width: 280px;
2024-07-22 10:35:01 +08:00
background: #fff;
2024-06-27 09:39:53 +08:00
:deep(.el-tree) {
border: 1px solid var(--el-border-color);
}
:deep(.el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content) {
background-color: var(--el-color-primary-light-7);
}
.menu-collapse {
color: var(--el-color-primary);
}
}
.custom-tree-node {
display: flex;
align-items: center;
2024-06-27 09:39:53 +08:00
}
2026-03-06 09:36:42 +08:00
:deep(.el-input-group__prepend) {
background-color: var(--el-fill-color-blank);
}
2024-06-27 09:39:53 +08:00
</style>