From 8c3e6cced1a42c2643ac2352ae24ffbda4ec40da Mon Sep 17 00:00:00 2001
From: SHAOJIAHAO <55341701@qq.com>
Date: Thu, 17 Dec 2020 14:15:11 +0800
Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=BC=95=E5=85=A5=E5=9B=BE?=
=?UTF-8?q?=E7=89=87=E6=9F=A5=E7=9C=8B=E6=8F=92=E4=BB=B6=EF=BC=8C=E4=BF=AE?=
=?UTF-8?q?=E6=94=B9=E7=B4=A0=E6=9D=90icon=E7=82=B9=E5=87=BBbug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
angular.json | 3 ++-
package.json | 10 ++++-----
.../collection-tools.component.html | 5 +++--
.../collection-tools.component.scss | 3 +++
.../collection-tools.component.ts | 22 +++++++++++++------
5 files changed, 28 insertions(+), 15 deletions(-)
diff --git a/angular.json b/angular.json
index b7c2067..07cf0ab 100644
--- a/angular.json
+++ b/angular.json
@@ -29,7 +29,8 @@
"src/assets"
],
"styles": [
- "src/styles.scss"
+ "src/styles.scss",
+ "node_modules/viewerjs/dist/viewer.css"
],
"scripts": [
"node_modules/echarts/dist/echarts.js",
diff --git a/package.json b/package.json
index 77587c1..d86f914 100644
--- a/package.json
+++ b/package.json
@@ -24,6 +24,7 @@
"@angular/router": "~9.0.0",
"@types/cesium": "^1.59.5",
"angular-calendar": "^0.28.2",
+ "bson-objectid": "^1.3.1",
"cesium": "^1.64.0",
"e-ngx-cesium": "^6.3.2",
"echarts": "^4.6.0",
@@ -32,13 +33,12 @@
"ng2-file-upload": "^1.4.0",
"ngx-echarts": "^4.2.2",
"ngx-perfect-scrollbar": "^8.0.0",
- "rxjs": "~6.5.4",
- "tslib": "^1.10.0",
- "viewerjs": "^1.6.2",
- "swiper": "^5.3.7",
"pixi-filters": "^3.1.1",
"pixi.js": "^5.3.2",
- "bson-objectid": "^1.3.1",
+ "rxjs": "~6.5.4",
+ "swiper": "^5.3.7",
+ "tslib": "^1.10.0",
+ "viewerjs": "^1.9.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
diff --git a/src/app/ui/collection-tools/collection-tools.component.html b/src/app/ui/collection-tools/collection-tools.component.html
index f5daa5e..30e94a0 100644
--- a/src/app/ui/collection-tools/collection-tools.component.html
+++ b/src/app/ui/collection-tools/collection-tools.component.html
@@ -103,8 +103,9 @@
+
-
+
@@ -126,7 +127,7 @@
{{node.name}}
- ({{node.children.length}})
+ ({{node.children.length}})
visibility
diff --git a/src/app/ui/collection-tools/collection-tools.component.scss b/src/app/ui/collection-tools/collection-tools.component.scss
index be59497..ad57cdc 100644
--- a/src/app/ui/collection-tools/collection-tools.component.scss
+++ b/src/app/ui/collection-tools/collection-tools.component.scss
@@ -1,4 +1,7 @@
@import './panel.scss';
+::-webkit-scrollbar {
+ display: none; /* Chrome Safari */
+}
.content {
width: 100%;
height: 100%;
diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts
index cd4e9d3..815a037 100644
--- a/src/app/ui/collection-tools/collection-tools.component.ts
+++ b/src/app/ui/collection-tools/collection-tools.component.ts
@@ -1134,15 +1134,15 @@ export class CollectionToolsComponent implements OnInit {
//处理 tree 数据结构
handleTreeData (storeyData) {
-
+ //storeyData为当前楼层拥有的消防设施
this.storeyData = storeyData
let data = this.allFireElements //所有消防要素模板
let treeData = [] //tree型 处理完成后的数据
+
data.forEach(element => {
element.isTemplate = true //添加模板标识
element.isLook = true //添加是否可见标识
- element.name!='其他'? element.children = [] : null
-
+ element.name != '其他' ? element.children = [] : null
if(storeyData){
for(let key in storeyData.data){
storeyData.data[key].isLookPattern = true
@@ -1161,8 +1161,6 @@ export class CollectionToolsComponent implements OnInit {
}
})
}
- //
-
element.children.push(storeyData.data[key])
}
}
@@ -1172,7 +1170,9 @@ export class CollectionToolsComponent implements OnInit {
data.forEach(element => {
if (!element.parentId) { treeData.push(element) }
});
+
this.dataSource.data = treeData
+
this.treeControl.expandAll()
}
@@ -1203,7 +1203,7 @@ export class CollectionToolsComponent implements OnInit {
this.canvas.setHighlight(iconHighLightArr)
}
- //点击数节点的显示隐藏icon
+ //点击树节点的显示隐藏icon
clickLookItem(node){
//修改真实素材islook属性
@@ -1214,9 +1214,16 @@ export class CollectionToolsComponent implements OnInit {
}
//所有消防要素模板变化islook值
+ if(node.isTemplate && node.name == "其他"){
+ this.allFireElements.forEach(item=>{
+ if(item.name == "其他"){
+ item.isLook = !item.isLook
+ }
+ })
+ }
if(node.isTemplate){
this.allFireElements.forEach(item=>{
- if(item.id == node.id || item.name == "其他"){
+ if(item.id == node.id){
item.isLook = !item.isLook
}
})
@@ -1270,6 +1277,7 @@ export class CollectionToolsComponent implements OnInit {
iconVisibleArr.push(node.id)
}
this.canvas.setIconVisible(iconVisibleArr,!node.isLook)
+
}
//计算 可视区域内宽度, 是否缩放背景图