Files
pqs-9100_client/frontend/src/views/home/components/tree.vue

113 lines
2.7 KiB
Vue
Raw Normal View History

2024-08-23 13:19:20 +08:00
<template>
<div class="plan_tree">
2024-08-27 18:37:46 +08:00
<div class="search_view">
<el-input
placeholder="请输入计划名称"
v-model="searchForm.planName"
></el-input>
<Menu style="width: 26px;height: 26px; margin-left: 8px;cursor: pointer;color:var(--el-color-primary)" @click.stop="detail({})" />
2024-08-27 18:37:46 +08:00
</div>
<div class="tree_container">
2024-08-27 18:37:46 +08:00
<el-tree
:data="data"
ref="treeRef"
:filter-node-method="filterNode"
:props="defaultProps"
node-key="id"
default-expand-all
:default-checked-keys="defaultChecked"
@node-click="handleNodeClick"
>
2024-08-27 15:40:58 +08:00
<template #default="{ node, data }">
<span class="custom-tree-node" style="display: flex;align-items: center;">
<Platform v-if="!data.pid" style="width:18px;height: 18px;margin-right:8px;" :style="{color:node.label=='未检测'?'#F56C6C':node.label=='检测中'?'#E6A23C':'#67C23A'}"/>
2024-08-27 15:40:58 +08:00
<span>{{ node.label }}</span>
2024-08-27 18:37:46 +08:00
<!-- <Menu v-if="data.pid" @click.stop="detail(data)" style="width: 12px;margin-left: 8px;"/> -->
2024-08-27 15:40:58 +08:00
</span>
</template>
</el-tree>
</div>
2024-08-23 13:19:20 +08:00
</div>
</template>
<script lang="ts" setup>
2024-08-27 18:37:46 +08:00
import { Menu,Platform} from "@element-plus/icons-vue";
const emit = defineEmits(["jump"]);
2024-08-23 13:19:20 +08:00
const data: any = ref([]);
const defaultProps = {
children: "children",
label: "name",
2024-08-27 15:40:58 +08:00
pid: "pid",
2024-08-23 13:19:20 +08:00
};
const searchForm = ref({
planName: "",
});
2024-08-27 18:37:46 +08:00
const defaultChecked = ref([]);
2024-08-23 13:19:20 +08:00
const getTreeData = (val: any) => {
2024-08-27 18:37:46 +08:00
defaultChecked.value = [];
2024-08-23 13:19:20 +08:00
data.value = val;
2024-08-27 18:37:46 +08:00
defaultChecked.value.push(data.value[0].children[0].id);
2024-08-23 13:19:20 +08:00
};
const filterText = ref("");
const treeRef = ref();
watch(
() => searchForm.value.planName,
(val) => {
treeRef.value!.filter(val);
},
{
deep: true,
}
);
const handleNodeClick = (data) => {
console.log(data);
};
const filterNode = (value: string, data) => {
if (!value) return true;
return data.name.includes(value);
};
2024-08-27 15:40:58 +08:00
// 点击详情
2024-08-27 18:37:46 +08:00
const detail = (e: any) => {
emit("jump", e);
};
2024-08-23 13:19:20 +08:00
onMounted(() => {
console.log();
});
defineExpose({ getTreeData });
</script>
<style lang="scss" scoped>
.plan_tree {
2024-09-02 16:10:33 +08:00
// width: 200px;
// height: 100%;
display: flex;
flex-direction: column;
2024-08-23 13:19:20 +08:00
padding: 5px;
2024-09-02 16:10:33 +08:00
// height: calc(100% - 70px);
2024-08-27 14:01:26 +08:00
background-color: #fff;
2024-08-27 18:37:46 +08:00
.search_view {
width: 100%;
height: auto;
display: flex;
justify-content: space-between;
padding: 0 5px;
box-sizing: border-box;
align-items: center;
.el-input{
margin-top: 6px;
}
}
2024-08-23 13:19:20 +08:00
.el-input {
width: 100%;
margin: 0 10px 10px 0;
2024-08-23 13:19:20 +08:00
}
2024-08-27 15:40:58 +08:00
.tree_container {
flex: 1;
overflow-y: auto;
2024-08-27 15:40:58 +08:00
.el-tree {
height: 100%;
}
2024-08-23 13:19:20 +08:00
}
}
</style>