Browse Source

[完善]代码格式缩进

master
邵佳豪 3 years ago
parent
commit
7b5f74c10c
  1. 130
      src/app/ui/collection-tools-read/collection-tools.component.ts
  2. 32
      src/app/ui/collection-tools/collection-tools.component.html
  3. 101
      src/app/ui/collection-tools/collection-tools.component.scss
  4. 3
      src/app/ui/collection-tools/editBuilding.html
  5. 19
      src/app/ui/collection-tools/examinationQuestions.html
  6. 51
      src/app/ui/collection-tools/examinationQuestions.ts
  7. 62
      src/app/ui/collection-tools/panel.scss
  8. 6
      src/app/ui/collection-tools/save.ts
  9. 6
      src/app/ui/collection-tools/saveOne.html
  10. 15
      src/app/ui/collection-tools/saveTwo.html
  11. 6
      src/app/ui/collection-tools/uploadDisposalNodes.html
  12. 29
      src/app/ui/collection-tools/uploadQuestions.html
  13. 7
      src/app/ui/collection-tools/viewdetails.html

130
src/app/ui/collection-tools-read/collection-tools.component.ts

@ -379,31 +379,31 @@ export class CollectionToolsReadComponent implements OnInit {
if (!element.parentId) { treeData.push(element) }
});
function recursionFilterEmpty(originalList, result) {
      for(let i = 0, length = originalList.length; i < length; i++) {
          const item = originalList[i];
          if (item.PropertyInfos) {
              // 最内层
              result.push(item);
          } else if (item.children && item.children.length) {
              const newChildren = [];
              // 递归调用,底层的真实数据会全部 push  newChildren 
              recursionFilterEmpty(item.children, newChildren);
              if (newChildren.length) {
                  // 替换原始数据
                  item.children = newChildren;
                  // 子项有真实的数据,就保留这一项
                  result.push(item);
              } // 如果没有这一项就会被删除
          }
      }
  }
  
  function filterEmpty(listData) {
      const result = [];
      recursionFilterEmpty(listData, result);
      return result;
  }
function recursionFilterEmpty(originalList, result) {
for (let i = 0, length = originalList.length; i < length; i++) {
const item = originalList[i];
if (item.PropertyInfos) {
// 最内层
result.push(item);
} else if (item.children && item.children.length) {
const newChildren = [];
// 递归调用,底层的真实数据会全部 push  newChildren 
recursionFilterEmpty(item.children, newChildren);
if (newChildren.length) {
// 替换原始数据
item.children = newChildren;
// 子项有真实的数据,就保留这一项
result.push(item);
} // 如果没有这一项就会被删除
}
}
}
function filterEmpty(listData) {
const result = [];
recursionFilterEmpty(listData, result);
return result;
}
this.dataSource.data = filterEmpty(treeData)
@ -442,25 +442,25 @@ export class CollectionToolsReadComponent implements OnInit {
clickLookItem(node) {
//子节点跟随父节点的islook变化
let iconVisibleArr: any = []
  if(node.origin.children && node.origin.children.length != 0){
node.origin.isLook = !node.origin.isLook
      node.origin.children.forEach(item=>{
        item.isLook = node.origin.isLook 
        if(item.children && item.children.length != 0){
          item.children.forEach(i=>{
            i.isLook = node.origin.isLook 
if(i.children && i.children.length != 0){
if (node.origin.children && node.origin.children.length != 0) {
node.origin.isLook = !node.origin.isLook
node.origin.children.forEach(item => {
item.isLook = node.origin.isLook
if (item.children && item.children.length != 0) {
item.children.forEach(i => {
i.isLook = node.origin.isLook
if (i.children && i.children.length != 0) {
} else {
iconVisibleArr.push(i.Id)
}
          })
        }else{
})
} else {
iconVisibleArr.push(item.Id)
}
      })
     }else{
  node.origin.isLook = !node.origin.isLook
})
} else {
node.origin.isLook = !node.origin.isLook
iconVisibleArr.push(node.origin.Id)
}
console.log(iconVisibleArr)
@ -490,10 +490,8 @@ export class CollectionToolsReadComponent implements OnInit {
});
function array_diff(a, b) {
for(var i=0;i<b.length;i++)
{
for(var j=0;j<a.length;j++)
{
for (var i = 0; i < b.length; i++) {
for (var j = 0; j < a.length; j++) {
if (a[j].id == b[i].id) {
a.splice(j, 1);
j = j - 1;
@ -626,30 +624,30 @@ export class CollectionToolsReadComponent implements OnInit {
treeData.push(element)
}
});
function recursionFilterEmpty(originalList, result) {
      for(let i = 0, length = originalList.length; i < length; i++) {
          const item = originalList[i];
          if (item.PropertyInfos) {
              // 最内层
              result.push(item);
          } else if (item.children && item.children.length) {
              const newChildren = [];
              // 递归调用,底层的真实数据会全部 push  newChildren 
              recursionFilterEmpty(item.children, newChildren);
              if (newChildren.length) {
                  // 替换原始数据
                  item.children = newChildren;
                  // 子项有真实的数据,就保留这一项
                  result.push(item);
              } // 如果没有这一项就会被删除
          }
      }
  }
  function filterEmpty(listData) {
      const result = [];
      recursionFilterEmpty(listData, result);
      return result;
  }
function recursionFilterEmpty(originalList, result) {
for (let i = 0, length = originalList.length; i < length; i++) {
const item = originalList[i];
if (item.PropertyInfos) {
// 最内层
result.push(item);
} else if (item.children && item.children.length) {
const newChildren = [];
// 递归调用,底层的真实数据会全部 push  newChildren 
recursionFilterEmpty(item.children, newChildren);
if (newChildren.length) {
// 替换原始数据
item.children = newChildren;
// 子项有真实的数据,就保留这一项
result.push(item);
} // 如果没有这一项就会被删除
}
}
}
function filterEmpty(listData) {
const result = [];
recursionFilterEmpty(listData, result);
return result;
}
return filterEmpty(treeData)
}

32
src/app/ui/collection-tools/collection-tools.component.html

@ -164,8 +164,7 @@
<div style="width: 3px;height: 100%;position: absolute;left: 0;cursor: e-resize;z-index: 1000;"
(mousedown)="rightDivMouseDown($event)"></div>
<!-- 属性 -->
<div id="property" class="property"
style="height: 100%;background-color: white;">
<div id="property" class="property" style="height: 100%;background-color: white;">
<div class="titleS">
<mat-icon>info</mat-icon>属性
</div>
@ -258,8 +257,7 @@
<p>{{item.PropertyName}}<span style="font-size: 14px;"
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
<input type="number" class="biginput" [value]="item.PropertyValue"
(input)="assetInputChange(item,$event)"
[disabled]="canvasAssetObj.GameMode == 0 && !pattern">
(input)="assetInputChange(item,$event)" [disabled]="canvasAssetObj.GameMode == 0 && !pattern">
</div>
<!-- 图片数量 -->
<div *ngIf="item.PropertyType == 4" style="height: 140px;">
@ -267,11 +265,10 @@
<p style="width: 40%;display: inline-block;">{{item.PropertyName}}</p>
<span style="width: 26%;text-align:right;font-size: 13px;">{{imagesArr.length ? imagesArr.length : 0}}
/ {{item.PropertyValue}}</span>
<input [disabled]="canvasAssetObj.GameMode == 0 && !pattern" *ngIf="isImgNumCss"
accept="image/*" (change)="selectFile($event)" type="file"
<input [disabled]="canvasAssetObj.GameMode == 0 && !pattern" *ngIf="isImgNumCss" accept="image/*"
(change)="selectFile($event)" type="file"
style="width: 33%;position: absolute;right: 10px;top: 1px;opacity: 0;z-index: 100;cursor: pointer;height: 21px;">
<div
*ngIf="canvasAssetObj.GameMode != 0"
<div *ngIf="canvasAssetObj.GameMode != 0"
style="width: 33%;height: 21px;line-height: 21px;text-align: center;position: absolute;right: 10px;top: 1px;z-index: 99;border: 1px solid rgb(208, 211, 214);border-radius: 2px;font-size: 13px;cursor: pointer;"
(click)="imgNumBeyond()">添加</div>
@ -287,7 +284,8 @@
<!-- 如果需要导航按钮 -->
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<span *ngIf="canvasAssetObj.GameMode != 0" style="position: absolute;right: 2px;top: 2px;cursor: pointer;z-index: 200;">
<span *ngIf="canvasAssetObj.GameMode != 0"
style="position: absolute;right: 2px;top: 2px;cursor: pointer;z-index: 200;">
<mat-icon class="hoverred" (click)="deleteImg()">delete</mat-icon>
</span>
</div>
@ -296,8 +294,7 @@
<!-- 方向 -->
<div *ngIf="item.PropertyType == 5" class="selectDiv">
<p style="display: inline-block;">{{item.PropertyName}}</p>
<select (change)="direction(item,$event)"
[disabled]="canvasAssetObj.GameMode == 0 && !pattern">
<select (change)="direction(item,$event)" [disabled]="canvasAssetObj.GameMode == 0 && !pattern">
<option value="0" [selected]="item.PropertyValue ==0"></option>
<option value="1" [selected]="item.PropertyValue ==1">西</option>
<option value="2" [selected]="item.PropertyValue ==2"></option>
@ -311,18 +308,15 @@
<!-- 布尔值 是1或否0 -->
<div *ngIf="item.PropertyType == 6">
<p>{{item.PropertyName}}</p>
<input [disabled]="canvasAssetObj.GameMode == 0 && !pattern"
[checked]="item.PropertyValue == 1" class="input" type="radio" name="radio"
(click)="assetRadioChange(item,'1')"><span></span>
<input [disabled]="canvasAssetObj.GameMode == 0 && !pattern"
[checked]="item.PropertyValue == 0" class="input" type="radio" name="radio"
(click)="assetRadioChange(item,'0')"><span></span>
<input [disabled]="canvasAssetObj.GameMode == 0 && !pattern" [checked]="item.PropertyValue == 1"
class="input" type="radio" name="radio" (click)="assetRadioChange(item,'1')"><span></span>
<input [disabled]="canvasAssetObj.GameMode == 0 && !pattern" [checked]="item.PropertyValue == 0"
class="input" type="radio" name="radio" (click)="assetRadioChange(item,'0')"><span></span>
</div>
<!-- 供给区域 -->
<div *ngIf="item.PropertyType == 7" class="selectDiv">
<p style="display: inline-block;">{{item.PropertyName}}</p>
<select (change)="supplyArea(item,$event)"
[disabled]="canvasAssetObj.GameMode == 0 && !pattern">
<select (change)="supplyArea(item,$event)" [disabled]="canvasAssetObj.GameMode == 0 && !pattern">
<option value="0" [selected]="item.PropertyValue ==0">全部</option>
<option value="1" [selected]="item.PropertyValue ==1">高区</option>
<option value="2" [selected]="item.PropertyValue ==2">中区</option>

101
src/app/ui/collection-tools/collection-tools.component.scss

@ -1,7 +1,10 @@
@import './panel.scss';
::-webkit-scrollbar {
display: none; /* Chrome Safari */
display: none;
/* Chrome Safari */
}
.content {
width: 100%;
height: 100%;
@ -10,6 +13,7 @@
padding: 3px;
display: flex;
flex-direction: column;
.buildingbtnchecked {
background-color: #07CDCF;
color: white;
@ -26,6 +30,7 @@
align-items: center;
background-color: #fff;
box-shadow: inset 0px -3px 5px 0px rgb(165, 163, 163);
.headerTitle {
width: 235px;
overflow: hidden;
@ -35,9 +40,11 @@
font-size: 20px;
font-weight: 550;
}
.headerCenter {
flex: 1;
overflow: hidden;
input {
width: 99%;
height: 30px;
@ -45,11 +52,13 @@
border-radius: 5px;
}
}
.headerRight {
width: 350px;
overflow: hidden;
box-sizing: border-box;
padding-left: 10px;
button {
font-size: 14px;
color: #07CDCF;
@ -58,6 +67,7 @@
outline: none;
cursor: pointer;
}
.mat-icon {
font-size: 22px;
vertical-align: middle;
@ -74,9 +84,11 @@
vertical-align: middle;
margin-left: 1px;
}
span {
font-size: 18px;
}
flex: 5%;
display: flex;
align-items:center;
@ -84,13 +96,16 @@
box-sizing: border-box;
margin: 3px 0;
background-color: white;
button {
border: 0.5px solid rgb(208, 211, 214);
margin: 0 2px;
}
.editdeletebtn {
display: none;
}
.bigeditdeletebtn:hover {
.editdeletebtn {
display: inline-block;
@ -104,6 +119,7 @@
cursor: pointer;
vertical-align: middle;
}
//左右两侧功能栏 统一样式
.publicCss {
border-radius: 5px;
@ -111,14 +127,17 @@
height: 100%;
top: 0;
}
.functionalDomain {
flex: 1;
overflow: hidden;
.functionalDomainContent {
position: relative;
width: 100%;
height: 100%;
}
.centerBuildingDiv {
position: absolute;
max-width: 400px;
@ -127,6 +146,7 @@
z-index: 150;
display: flex;
}
.functionalDomainLeft {
background-color: #fff;
display: flex;
@ -138,6 +158,7 @@
width: 235px;
left: 0;
z-index: 111;
.leftDragDiv {
position: absolute;
right: 0;
@ -147,6 +168,7 @@
cursor: e-resize;
}
}
.functionalDomainRight {
z-index: 111;
margin-right: 0px;
@ -156,11 +178,13 @@
min-width: 235px;
right: 0;
}
//右边导航栏显示隐藏
.togglePanel2 {
margin-right: -2000px;
transition: margin-right 1s;
}
//左侧导航栏显示隐藏
.togglePanel {
margin-left: -2000px;
@ -177,19 +201,26 @@
border-radius: 5px;
box-sizing: border-box;
padding: 5px 0;
.centerTotalHeader {
height: 30px;
line-height: 30px;
box-sizing: border-box;
padding: 0 5px;
font-size: 14px;
.above:hover {cursor: move;;}
.above:hover {
cursor: move;
;
}
.above {
font-size: 24px;
color: rgb(175, 164, 164);
margin: 0 10px 0 10px;
}
}
.everyTotal {
width: 100%;
height: 30px;
@ -201,6 +232,7 @@
font-size: 16px;
}
}
//中间建筑/楼层
//右边操作栏
@ -211,21 +243,36 @@
padding-left: 5px;
box-sizing: border-box;
color: #07CDCF;
.mat-icon {vertical-align: middle; margin-right: 5px; font-size: 22px;}
.mat-icon {
vertical-align: middle;
margin-right: 5px;
font-size: 22px;
}
}
input {
border: none;
outline: none;
background-color: #d6dddf;
box-sizing: border-box;
padding-left: 5px;
}
input { border: none; outline: none; background-color: #d6dddf; box-sizing: border-box; padding-left: 5px; }
//右侧属性
.property {
display: flex;
flex-flow: column;
.siteproperty {
height: 100%;
overflow-y: auto;
p {
color: #9c9fa5;
padding-left: 5px;
}
.siteproperty_size {
background-color: #F2F5F6;
width: 93%;
@ -233,6 +280,7 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
border-radius: 3px;
min-height: 21px;
}
.rightAttribute {
width: 12%;
height: 99.5%;
@ -243,55 +291,69 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
border: 2px solid #464646;
}
}
.assetsproperty {
overflow-y: auto;
height: 100%;
p {
color: #9c9fa5;
margin: 1px 0 3px 8px;
font-size: 14px;
}
span {
font-size: 15px;
}
input {
height: 24px;
border-radius: 3px;
}
.biginput {
display: block;
width: 88%;
margin: 0 auto;
}
.smallinput {
display: block;
width: 19%;
margin-left: 14px;
}
.textarea {
display: block;
width: 88%;
height: 50px;
margin: 0 auto;
}
.swiper-button-next {
right: 6px;
}
.swiper-button-prev {
left: 6px;
}
.swiper-container {
// --swiper-theme-color: #ff6600;/* 设置Swiper风格 */
// --swiper-navigation-color: #00ff33;/* 单独设置按钮颜色 */
--swiper-navigation-size:20px;/* 设置按钮大小 */
--swiper-navigation-size: 20px;
/* 设置按钮大小 */
}
.hoverred:hover {
color: rgb(187, 28, 28);
}
.selectDiv {
height: 21px;
position: relative;
margin-bottom: 5px;
select {
width: 98px;
height: 22px;
@ -303,9 +365,11 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
border-radius: 2px;
}
}
.colorBigDiv {
width: 88%;
margin-left: 8px;
.colorBigTemplateDiv {
span {
color: #9c9fa5;
@ -313,6 +377,7 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
height: 26px;
line-height: 26px;
}
.colorTemplateDiv {
width: 65%;
height: 22px;
@ -330,6 +395,7 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
float: left;
border: 2px solid white;
}
.coloractive {
border: 2px solid black;
}
@ -338,11 +404,13 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
}
}
//右侧消防要素
.firecategories {
position: relative;
display: flex;
flex-flow: column;
.firecategoriesTree {
overflow-y: auto;
height: 100%;
@ -353,11 +421,14 @@ input { border: none; outline: none; background-color: #d6dddf; box-sizing: bord
div:focus {
outline: none;
}
//没有图片时显示无图片背景图
.noImgCss {
background: url(../../../assets/images/noImg.png) no-repeat center center;
background-size: 88% 100%;/*按比例缩放*/
background-size: 88% 100%;
/*按比例缩放*/
}
.input {
width: 18px;
height: 18px;
@ -370,10 +441,12 @@ div:focus {
.isLookCss {
margin-left: auto;
color: #07CDCF;
.icongray {
color: #D9D0DC;
}
}
.mat-tree-node {
padding-right: 3px;
min-height: 30px;
@ -381,12 +454,15 @@ div:focus {
font-size: 12px;
cursor: pointer;
}
.treeNode:hover {
background-color: #ccebf8;
}
.isLookPattern {
display: none;
}
.treeText {
overflow: hidden;
white-space: nowrap;
@ -402,6 +478,7 @@ div:focus {
overflow: hidden;
right: 0;
}
.weatherBox {
height: 40px;
width: 700px;
@ -409,21 +486,25 @@ div:focus {
position: absolute;
right: 0;
transition: right linear .5s;
.openbtn {
font-size: 45px;
height: 45px;
width: 40px;
}
.name {
font-size: 16px;
vertical-align: middle;
margin-left: 3px;
}
input {
width: 140px;
height: 22px;
margin-left: 3px;
}
select {
width: 96px;
height: 25px;
@ -431,12 +512,15 @@ div:focus {
vertical-align: middle;
}
}
.open {
right: 0px;
}
.close {
right: -622px;
}
.bottomCss {
position: absolute;
left: 232px;
@ -447,6 +531,7 @@ div:focus {
z-index: 111;
background-color: white;
border: 1px solid #464646;
.dragDiv {
width: 100%;
height: 3px;
@ -455,9 +540,11 @@ div:focus {
z-index: 111;
cursor: n-resize;
}
.title {
height: 35px;
background-color: #464646;
div {
background-color: #464646;
float: left;
@ -467,10 +554,12 @@ div:focus {
padding-left: 5px;
cursor: pointer;
}
.detailsAndattentBtn {
background-color: #595959;
}
}
.body {
textarea {
width: 100%;

3
src/app/ui/collection-tools/editBuilding.html

@ -3,7 +3,8 @@
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container">
<div mat-dialog-content>
<mat-form-field>
<input type="text" matInput [(ngModel)]="defaultName" required name="propertyName" placeholder="建筑名称" autocomplete="off">
<input type="text" matInput [(ngModel)]="defaultName" required name="propertyName" placeholder="建筑名称"
autocomplete="off">
</mat-form-field>
</div>
<div mat-dialog-content>

19
src/app/ui/collection-tools/examinationQuestions.html

@ -2,19 +2,9 @@
<div style="text-align: center;font-weight: 550;">消防设施考题设定</div>
<div id="nodeTree" style="max-height: 300px;overflow-y: auto; margin: 25px 0;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent3
[nzData]="renderData"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)"
(nzCheckBoxChange)="nzEvent($event)"
[nzTreeTemplate]="nzTreeTemplate3"
>
<nz-tree #nzTreeComponent3 [nzData]="renderData" nzCheckable nzMultiple [nzCheckedKeys]="defaultCheckedKeys"
[nzExpandedKeys]="defaultExpandedKeys" [nzSelectedKeys]="defaultSelectedKeys" (nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)" (nzCheckBoxChange)="nzEvent($event)" [nzTreeTemplate]="nzTreeTemplate3">
</nz-tree>
<ng-template #nzTreeTemplate3 let-node let-origin="origin">
<div class="treeNodeTemplate">
@ -24,7 +14,8 @@
<!-- 消防列表树 -->
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;"
(click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>

51
src/app/ui/collection-tools/examinationQuestions.ts

@ -51,7 +51,8 @@ export class examinationQuestions {
}
});
}})
}
})
}
})
}
@ -203,30 +204,30 @@ export class uploadQuestions {
allFireElements.forEach(element => {
if (!element.parentId) { treeData.push(element) }
});
function recursionFilterEmpty(originalList, result) {
      for(let i = 0, length = originalList.length; i < length; i++) {
          const item = originalList[i];
          if (item.PropertyInfos) {
              // 最内层
              result.push(item);
          } else if (item.children && item.children.length) {
              const newChildren = [];
              // 递归调用,底层的真实数据会全部 push  newChildren 
              recursionFilterEmpty(item.children, newChildren);
              if (newChildren.length) {
                  // 替换原始数据
                  item.children = newChildren;
                  // 子项有真实的数据,就保留这一项
                  result.push(item);
              } // 如果没有这一项就会被删除
          }
      }
  }
  function filterEmpty(listData) {
      const result = [];
      recursionFilterEmpty(listData, result);
      return result;
  }
function recursionFilterEmpty(originalList, result) {
for (let i = 0, length = originalList.length; i < length; i++) {
const item = originalList[i];
if (item.PropertyInfos) {
// 最内层
result.push(item);
} else if (item.children && item.children.length) {
const newChildren = [];
// 递归调用,底层的真实数据会全部 push  newChildren 
recursionFilterEmpty(item.children, newChildren);
if (newChildren.length) {
// 替换原始数据
item.children = newChildren;
// 子项有真实的数据,就保留这一项
result.push(item);
} // 如果没有这一项就会被删除
}
}
}
function filterEmpty(listData) {
const result = [];
recursionFilterEmpty(listData, result);
return result;
}
return filterEmpty(treeData)
}

62
src/app/ui/collection-tools/panel.scss

@ -20,6 +20,7 @@
color: #fff;
background: #07CDCF;
}
//平面图头部字体图标样式
.hover {
width: 18px;
@ -27,11 +28,19 @@
margin-left: 90px;
border: 1px solid #999;
border-radius: 3px;
.mat-icon {font-size: 18px; color: #999;}
.mat-icon {
font-size: 18px;
color: #999;
}
}
.hover:hover {
background-color: #4DA5FA;
.mat-icon {color: #fff;}
.mat-icon {
color: #fff;
}
}
//平面图
@ -42,6 +51,7 @@
line-height: 35px;
box-sizing: border-box;
padding: 0 10px 0 25px;
.mat-icon {
font-size: 20px;
}
@ -58,11 +68,13 @@
text-align: center;
position: relative;
overflow: hidden;
img {
width: 20px;
height: 20px;
}
}
//替换底图 inputfile
.a-upload {
display: block;
@ -74,6 +86,7 @@
text-align: center;
position: relative;
overflow: hidden;
input {
position: absolute;
width: 20px;
@ -83,11 +96,13 @@
opacity: 0;
}
}
.a-upload:hover {
.mat-icon {
color: #fff;
}
}
//上传底图 inputfile
#a-uploadImg {
display: block;
@ -100,6 +115,7 @@
border-radius: 5px;
border: 1px solid #999;
z-index: 999;
input {
position: absolute;
width: 300px;
@ -108,11 +124,13 @@
top: 0;
opacity: 0;
}
img {
width: 100%;
height: auto;
}
}
#a-uploadImg:hover {
border: 5px solid skyblue;
}
@ -123,6 +141,7 @@
display: block;
}
}
//右边操作栏
#rightOperate {
width: 50px;
@ -135,16 +154,20 @@
background-color: #F0F4F7;
// #F0F4F7 cdced1
display: none;
.functionButton {
height: 25%;
line-height: 25px;
}
.bigFunctionIcon {
font-size: 24px;
}
.functionIcon {
color: #999;
}
.functionIcon:hover {
color: #4DA5FA;
}
@ -165,28 +188,36 @@
.scenarioAssignment {
overflow-y: auto;
}
.selectEditMode {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
.materialBankDIV {
flex: 1;
overflow-x: hidden;
overflow-y: auto;
}
// 基本信息/想定作业 切换
//处置预案
#terrNodePublic {
height: 35px;
line-height: 35px;
display: flex;
.textNode {flex: 1;}
.textNode {
flex: 1;
}
}
//字体图标
.planIconDiv {
display: inline-block;
.mat-icon {
font-size: 20px;
width: 20px;
@ -201,21 +232,29 @@
.mat-expansion-panel-header {
height: 40px !important;
}
//素材库溢出隐藏
#materialBank {
margin: 1px 0;
}
//素材库图片flex
.mat-expansion-panel-header {background-color: #d6f4f5;}
.mat-expansion-panel-header {
background-color: #d6f4f5;
}
#panelLibrary .text {
box-sizing: border-box;
margin-left: 10px;
}
.panelLibraryFlex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between; /* 水平居中 */
justify-content: space-between;
/* 水平居中 */
.imgBox {
width: 70px;
height: 100px;
@ -223,12 +262,14 @@
text-align: center;
border-radius: 3px;
margin: 5px 0;
img {
width: 70px;
height: auto;
max-height: 70px;
cursor: pointer;
}
p {
font-size: 12px;
cursor: pointer;
@ -242,21 +283,25 @@
text-overflow: ellipsis;
white-space: nowrap;
}
// 楼层/区域 是避难层时
.isRefugeStorey {
color: #FF8678;
background-color: #fff;
}
//选中平面图时
.selectSitePlan {
color: #fff;
background-color: #07CDCF;
}
//选中素材库图片时
.selectImg {
color: #fff;
background-color: #4DA5FA;
}
//选中 处置节点时
.selectanelPoint {
background-color: #F4C235;
@ -268,19 +313,24 @@
.keyMargin {
width: 100%;
margin: 5px 0;
.mat-form-field {
width: 100%;
}
}
.submitBottom {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between; /* 水平居中 */
justify-content: space-between;
/* 水平居中 */
}
.functionalDomainContent {
width: 300px;
height: 100%;
textarea {
border-radius: 5px;
border: 1px solid #999;

6
src/app/ui/collection-tools/save.ts

@ -26,12 +26,14 @@ export class saveOneDialog {
saveType(type) {
this.dialogRef.close()
const dialogRef = this.dialog.open(saveTwoDialog, {
data: {type: type,
data: {
type: type,
allDisposalNode: this.data.allDisposalNode,
selectedBuildingData: this.data.selectedBuildingData,
selectedSiteData: this.data.selectedSiteData,
siteOrbuilding: this.data.siteOrbuilding,
disasterId:this.data.disasterId}
disasterId: this.data.disasterId
}
});
dialogRef.afterClosed().subscribe(result => {
});

6
src/app/ui/collection-tools/saveOne.html

@ -1,5 +1,7 @@
<div style="text-align: center; margin-bottom: 25px; font-weight: 550;">处置节点保存</div>
<div style="display: flex;">
<button mat-stroked-button style="margin-right: 15px; color: #fff; background-color: #07CDCF; border: none;" (click)="saveType('new')">新建节点并保存</button>
<button mat-stroked-button style="margin-left: 15px; color: #fff; background-color: #FF8678; border: none;" (click)="saveType('old')">保存到已有节点</button>
<button mat-stroked-button style="margin-right: 15px; color: #fff; background-color: #07CDCF; border: none;"
(click)="saveType('new')">新建节点并保存</button>
<button mat-stroked-button style="margin-left: 15px; color: #fff; background-color: #FF8678; border: none;"
(click)="saveType('old')">保存到已有节点</button>
</div>

15
src/app/ui/collection-tools/saveTwo.html

@ -5,22 +5,21 @@
<div mat-dialog-content>
<mat-form-field>
<input type="text" matInput ngModel
required name="name" placeholder="节点名称" autocomplete="off">
<input type="text" matInput ngModel required name="name" placeholder="节点名称" autocomplete="off">
</mat-form-field>
</div>
<div mat-dialog-content>
<mat-form-field>
<mat-select [(value)]="allRootDisposalNode[0].name" required placeholder="父节点名称">
<mat-option *ngFor="let item of allRootDisposalNode" [value]="item.name" (click)="clickNode(item)">
<mat-option *ngFor="let item of allRootDisposalNode" [value]="item.name"
(click)="clickNode(item)">
{{item.name}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<div mat-dialog-actions>
<button mat-raised-button color="primary" type="submit"
[disabled]="!form.form.valid">
<button mat-raised-button color="primary" type="submit" [disabled]="!form.form.valid">
确定
</button>
<button mat-raised-button mat-dialog-close>取消</button>
@ -35,15 +34,15 @@
<div mat-dialog-content>
<mat-form-field>
<mat-select required ngModel placeholder="父节点名称" name="nodeId">
<mat-option *ngFor="let item of allPlanDisposalNode" [value]="item.id" (click)="clickNode(item)">
<mat-option *ngFor="let item of allPlanDisposalNode" [value]="item.id"
(click)="clickNode(item)">
{{item.name}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<div mat-dialog-actions>
<button mat-raised-button color="primary" type="submit"
[disabled]="!form.form.valid">
<button mat-raised-button color="primary" type="submit" [disabled]="!form.form.valid">
确定
</button>
<button mat-raised-button mat-dialog-close>取消</button>

6
src/app/ui/collection-tools/uploadDisposalNodes.html

@ -1,5 +1,6 @@
<div id="disposalNodeTree">
<div style="max-height: 500px;overflow-x: hidden;overflow-y: auto;margin-bottom: 25px;width: 330px;padding-right: 10px;">
<div
style="max-height: 500px;overflow-x: hidden;overflow-y: auto;margin-bottom: 25px;width: 330px;padding-right: 10px;">
<nz-tree #nzTreeComponent [nzData]="treeData" nzCheckable nzMultiple [nzTreeTemplate]="nzTreeTemplate"></nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div id="terrNodePublic">
@ -8,7 +9,8 @@
</ng-template>
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;"
(click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>

29
src/app/ui/collection-tools/uploadQuestions.html

@ -2,23 +2,16 @@
<div style="text-align: center;font-weight: 550;">上传</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考试要点</div>
<div style="margin-bottom: 25px;">
<textarea style="width: 100%;background-color: #dfe0e0;border: none;outline: none;height: 50px;border-radius: 5px;resize: none;" placeholder="请填写考试要点" [(ngModel)]="data.question.keynote"></textarea>
<textarea
style="width: 100%;background-color: #dfe0e0;border: none;outline: none;height: 50px;border-radius: 5px;resize: none;"
placeholder="请填写考试要点" [(ngModel)]="data.question.keynote"></textarea>
</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核消防设施</div>
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
[nzData]="renderData"
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)"
(nzCheckBoxChange)="nzEvent($event)"
[nzTreeTemplate]="nzTreeTemplate"
>
<nz-tree #nzTreeComponent [nzData]="renderData" nzMultiple [nzCheckedKeys]="defaultCheckedKeys"
[nzExpandedKeys]="defaultExpandedKeys" [nzSelectedKeys]="defaultSelectedKeys" (nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)" (nzCheckBoxChange)="nzEvent($event)" [nzTreeTemplate]="nzTreeTemplate">
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
@ -30,12 +23,7 @@
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核处置节点</div>
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
[nzData]="nodeTreeData"
nzMultiple
[nzTreeTemplate]="nzTreeTemplate"
>
<nz-tree #nzTreeComponent [nzData]="nodeTreeData" nzMultiple [nzTreeTemplate]="nzTreeTemplate">
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
@ -45,7 +33,8 @@
<!-- 消防列表树 -->
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;"
(click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>

7
src/app/ui/collection-tools/viewdetails.html

@ -1,6 +1,9 @@
<div style="position: relative;width: 1400px;height: 800px;line-height: 800px;" class="swiper-container">
<div style="position: absolute;right: -2px;top: -392px;cursor: pointer;z-index: 999;width: 24px;height: 24px;" (click)="closeDialog()">
<span><mat-icon>clear</mat-icon></span>
<div style="position: absolute;right: -2px;top: -392px;cursor: pointer;z-index: 999;width: 24px;height: 24px;"
(click)="closeDialog()">
<span>
<mat-icon>clear</mat-icon>
</span>
</div>
<div class="swiper-wrapper">

Loading…
Cancel
Save