123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370 |
- <template>
- <div class="app-container page-nesting">
- <!-- 树形组件start -->
- <div class="grid-content treeDom">
- <div style="text-align: center" class="mb-20">
- <el-button v-if="this.treeLevel == 3" disabled @click="addGroup()"
- >添加分组</el-button
- >
- <el-button type="primary" v-else @click="addGroup()"
- >添加分组</el-button
- >
- <el-button v-if="this.treeLevel == 3" disabled @click="addSite()"
- >添加站点</el-button
- >
- <el-button type="primary" v-else @click="addSite()">添加站点</el-button>
- </div>
- <el-input
- placeholder="输入关键字进行过滤"
- v-model="filterText"
- class="mb-20 searchInput"
- >
- <template #suffix>
- <i class="el-icon-search el-input__icon"></i>
- </template>
- </el-input>
- <el-tree
- class="filter-tree"
- :data="data"
- node-key="id"
- :props="defaultProps"
- :expand-on-click-node="false"
- default-expand-all
- @node-click="handleNodeClick"
- :filter-node-method="filterNode"
- ref="tree"
- >
- <template #default="{ node, data }">
- <span
- class="custom-tree-node"
- style="width: 100%"
- @mouseenter="mouseenter(data)"
- @mouseleave="mouseleave(data)"
- >
- <span>{{ node.label }}</span>
- <span>
- <a class="deleteLink" v-show="data.show" @click="remove(node, data)">
- <i size="mini" class="el-icon-delete"></i>
- </a>
- </span>
- </span>
- </template>
- </el-tree>
- </div>
- <!-- 树形组件end -->
- <!-- 站点主题start -->
- <div class="grid-content nestingDom" style="width: calc(100% -300px)">
- <el-tabs
- v-if="this.treeLevel == 3"
- v-model="activeName"
- type="card"
- @tab-click="handleClick"
- >
- <el-tab-pane label="基本信息" name="first">
- <basic-info class="basicInfo"></basic-info>
- </el-tab-pane>
- <el-tab-pane label="监控设备" name="second">
- <watch-dog
- v-on:success="success(res)"
- :avtiveName="activeName"
- ></watch-dog>
- </el-tab-pane>
- <el-tab-pane label="变量列表" name="third">
- <variable-list></variable-list>
- </el-tab-pane>
- <el-tab-pane label="摄像头" name="five">
- <camera></camera>
- </el-tab-pane>
- <el-tab-pane label="电能质量评分配置" name="six">
- <power-Score></power-Score>
- </el-tab-pane>
- </el-tabs>
- <!-- 分组信息start -->
- <group-info-com
- v-if="this.treeLevel == 2 || this.treeLevel == 1"
- ></group-info-com>
- <!-- 分组信息end -->
- <!-- 新建分组start -->
- <add-group-com
- v-if="showDialog"
- ref="addGroupCom"
- :dialog-title="dialogTitle"
- :item-info="tableItem"
- @closeDialog="closeDialog"
- ></add-group-com>
- <!-- 新建分组end -->
- <!-- 新建站点start -->
- <add-site-com
- v-if="showDialog"
- ref="addSiteCom"
- :dialog-title="dialogTitle"
- :item-info="tableItem"
- @closeDialog="closeDialog"
- ></add-site-com>
- <!-- 新建站点end -->
- </div>
- <!-- 站点主题end -->
- </div>
- </template>
- <script>
- import basicInfo from "./basicInfo";
- import WatchDog from "./watchDog";
- import variableList from "./variableList";
- import camera from "./camera";
- import PowerScore from "./powerScore";
- import groupInfoCom from "./groupInfoCom";
- import addGroupCom from "./addGroupCom";
- import addSiteCom from "./addSiteCom";
- export default {
- components: {
- basicInfo,
- WatchDog,
- variableList,
- camera,
- PowerScore,
- groupInfoCom,
- addGroupCom,
- addSiteCom,
- },
- data() {
- return {
- deleteShow: false,
- showDialog: false,
- treeLevel: 0,
- activeName: "first",
- filterText: "",
- data: [
- {
- label: "所有站点",
- children: [
- {
- label: "分组一",
- children: [
- {
- label: "站点 1-1",
- show: false,
- },
- {
- label: "站点 1-2",
- show: false,
- },
- {
- label: "站点 1-3",
- show: false,
- },
- {
- label: "站点 1-4",
- show: false,
- },
- ],
- },
- {
- label: "分组二",
- children: [
- {
- label: "站点 2-1",
- show: false,
- },
- {
- label: "站点 2-2",
- show: false,
- },
- {
- label: "站点 2-3",
- show: false,
- },
- {
- label: "站点 2-4",
- show: false,
- },
- ],
- },
- {
- label: "其他分组",
- children: [
- {
- label: "其他 3-1",
- show: false,
- },
- {
- label: "其他 3-2",
- show: false,
- },
- {
- label: "其他 3-3",
- show: false,
- },
- {
- label: "其他 3-4",
- show: false,
- },
- ],
- },
- ],
- },
- ],
- defaultProps: {
- children: "children",
- label: "label",
- },
- };
- },
- watch: {
- success(res) {
- alert(1);
- // this.dialogCreate = res;
- // this.activeName = res;
- },
- filterText(val) {
- this.$refs.tree.filter(val);
- },
- },
- methods: {
- mouseenter(data) {
- // console.log("移入");
- // console.log(data);
- data.show = true;
- // console.log(data.show);
- },
- mouseleave(data) {
- // console.log("移出");
- // console.log(data);
- data.show = false;
- },
- handleClick(tab, event) {
- console.log(tab, event);
- },
- filterNode(value, data) {
- if (!value) return true;
- return data.label.indexOf(value) !== -1;
- },
- handleNodeClick(data, obj, node) {
- this.treeLevel = obj.level;
- // console.log(this.treeLevel);
- // console.log(node);
- },
- // 关闭操作
- closeDialog(flag) {
- if (flag) {
- // 重新刷新表格内容
- this.fetchData();
- }
- this.showDialog = false;
- },
- addGroup() {
- this.tableItem = {
- id: "",
- stationName: "",
- watchName: "",
- watchCode: "",
- siteList: [],
- done: "",
- guaZai: "",
- checked: true,
- resource: "",
- };
- this.dialogTitle = "新建分组";
- this.showDialog = true;
- this.$nextTick(() => {
- this.$refs["addGroupCom"].showDialog = true;
- });
- },
- addSite() {
- this.tableItem = {
- id: "",
- region: "",
- stationName: "",
- watchName: "",
- watchCode: "",
- siteList: [],
- done: "",
- guaZai: "",
- checked: true,
- resource: "",
- };
- this.dialogTitle = "新建站点";
- this.showDialog = true;
- this.$nextTick(() => {
- this.$refs["addSiteCom"].showDialog = true;
- });
- },
- append(data) {
- var id;
- const newChild = { id: id++, label: "testtest", children: [] };
- if (!data.children) {
- this.$set(data, "children", []);
- }
- data.children.push(newChild);
- },
- remove(node, data) {
- const parent = node.parent;
- const children = parent.data.children || parent.data;
- const index = children.findIndex((d) => d.id === data.id);
- children.splice(index, 1);
- this.dataSource = [...this.dataSource];
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .app-container.page-nesting {
- padding: 0;
- background: rgba(0, 0, 0, 0);
- }
- .grid-content {
- background: #fff;
- height: calc(100vh - 140px);
- overflow-y: auto;
- }
- .el-input__inner {
- border-radius: 20px !important;
- }
- .treeDom {
- width: 270px;
- position: absolute;
- left: 0;
- margin-left: 20px;
- padding: 20px;
- .el-icon-search {
- color: #409eff;
- }
- .el-button {
- width: 100px;
- }
- }
- .nestingDom {
- margin-left: 290px;
- }
- </style>
- <style lang="scss">
- // tab重置样式
- .el-tabs--card > .el-tabs__header .el-tabs__item {
- line-height: 50px;
- height: 50px;
- font-size: 16px;
- }
- .el-tabs--card > .el-tabs__header .el-tabs__item.is-active {
- border-bottom: 2px solid #409eff;
- }
- .el-tabs__header {
- margin-bottom: 0;
- }
- .el-tabs--card > .el-tabs__header .el-tabs__item,
- .el-tabs--card > .el-tabs__header .el-tabs__nav {
- border: none;
- }
- </style>
|