|
@@ -3,9 +3,8 @@
|
|
|
<div class="tit">草稿箱</div>
|
|
|
<div class="conent">
|
|
|
<div class="left-nav">
|
|
|
-<!-- <Tree :data="treeData" @change="change"></Tree>-->
|
|
|
+ <!-- <Tree :data="treeData" @change="change"></Tree>-->
|
|
|
<el-tree :data="treeData" :props="defaultProps" @node-click="handleNodeClick"></el-tree>
|
|
|
-
|
|
|
</div>
|
|
|
<div class="conent-right">
|
|
|
<div class="conent-tit">
|
|
@@ -58,7 +57,12 @@ import { SFloorParser } from "@saga-web/big";
|
|
|
import { FloorView } from "./../lib/FloorView";
|
|
|
import { EditScence } from "@/components/mapClass/EditScence";
|
|
|
import bus from "@/bus";
|
|
|
-import { saveGroup, readGroup,queryDraftGroup,queryStatistic } from "@/api/editer.js";
|
|
|
+import {
|
|
|
+ saveGroup,
|
|
|
+ readGroup,
|
|
|
+ queryDraftGroup,
|
|
|
+ queryStatistic
|
|
|
+} from "@/api/editer.js";
|
|
|
import { STopologyParser } from "./../lib/parsers/STopologyParser";
|
|
|
import { uuid } from "@/components/mapClass/until";
|
|
|
import { SImageItem } from "@saga-web/graph/lib";
|
|
@@ -199,8 +203,8 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
- getTreeData(){
|
|
|
- queryDraftGroup({projectId:'1000423'}).then(res=>{
|
|
|
+ getTreeData() {
|
|
|
+ queryDraftGroup({ projectId: this.projectId }).then(res => {
|
|
|
console.log(res);
|
|
|
if(res.Result =='success'){
|
|
|
this.treeData = res.Data;
|
|
@@ -211,7 +215,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
getLegend(){
|
|
|
- let data = {
|
|
|
+ const data = {
|
|
|
projectId:'1000423',
|
|
|
flag:true,
|
|
|
graphId:this.graphId,
|
|
@@ -222,17 +226,26 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.getTreeData();
|
|
|
- // this.canvasWidth = this.$refs.graphy.offsetWidth;
|
|
|
- // this.canvasHeight = this.$refs.graphy.offsetHeight - 10;
|
|
|
- this.urlMsg = {
|
|
|
- categoryId: "SCPZ",
|
|
|
- projectId: "1000423",
|
|
|
- BuildingID: "1",
|
|
|
- FloorID: "f1",
|
|
|
- fmapID: "1000423_120"
|
|
|
- };
|
|
|
+ // // this.canvasWidth = this.$refs.graphy.offsetWidth;
|
|
|
+ // // this.canvasHeight = this.$refs.graphy.offsetHeight - 10;
|
|
|
+
|
|
|
+ const href = window.location.href;
|
|
|
+ let params = href.split("?")[1];
|
|
|
+ if (!params) {
|
|
|
+ // 参数有问题
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ params = decodeURIComponent(params);
|
|
|
+ const paramsArr = params.split("&");
|
|
|
+ const obj = {};
|
|
|
+ paramsArr.map(item => {
|
|
|
+ const arr = item.split("=");
|
|
|
+ obj[arr[0]] = arr[1];
|
|
|
+ });
|
|
|
+ console.log('obj',obj)
|
|
|
+ this.projectId = obj.projectId ?obj.projectId : '1000423';
|
|
|
this.init();
|
|
|
+ this.getTreeData();
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
@@ -263,14 +276,14 @@ export default {
|
|
|
height: 100%;
|
|
|
overflow-y: scroll;
|
|
|
padding: 0 12px;
|
|
|
- /deep/ .el-tree{
|
|
|
- background: #F7F9FA;
|
|
|
- .el-tree-node__content{
|
|
|
+ /deep/ .el-tree {
|
|
|
+ background: #f7f9fa;
|
|
|
+ .el-tree-node__content {
|
|
|
height: 38px;
|
|
|
}
|
|
|
- /deep/.el-tree-node:focus >.el-tree-node__content {
|
|
|
- background-color: #E1F2FF!important;
|
|
|
- color: #0091FF!important;
|
|
|
+ /deep/.el-tree-node:focus > .el-tree-node__content {
|
|
|
+ background-color: #e1f2ff !important;
|
|
|
+ color: #0091ff !important;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -304,7 +317,7 @@ export default {
|
|
|
.map {
|
|
|
flex: 1;
|
|
|
position: relative;
|
|
|
- height: 100%;
|
|
|
+ height: 100%;
|
|
|
/*height: calc(100% - 61px);*/
|
|
|
/*background: red;*/
|
|
|
.legend-btn {
|