|
|
|
|
<div class="content">
|
|
|
|
|
<!-- header头部 -->
|
|
|
|
|
<div class="header">
|
|
|
|
|
<button mat-button (click)="toggle()">
|
|
|
|
|
<mat-icon style="vertical-align: middle; color: #279FFF;">toc</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<button mat-button (click)="toggle2()">
|
|
|
|
|
<mat-icon style="vertical-align: middle; color: #279FFF;">list</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<span [ngClass]="{'icongray': !basicInfo}" *ngIf="pattern" title="基本信息名称显示/隐藏" class="marginLeftRight"
|
|
|
|
|
(click)="basicInfoClick()">
|
|
|
|
|
基本信息名称<mat-icon>visibility</mat-icon>
|
|
|
|
|
</span>
|
|
|
|
|
<span [ngClass]="{'icongray': !wantToWork}" *ngIf="!pattern" title="想定作业名称显示/隐藏" class="marginLeftRight"
|
|
|
|
|
(click)="wantToWorkClick()">
|
|
|
|
|
想定作业名称<mat-icon>visibility</mat-icon>
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<span class="marginLeftRight">
|
|
|
|
|
<mat-checkbox color="primary" [(ngModel)]="isMultiSelect" (change)='changeMultiSelect($event)'></mat-checkbox> 多选
|
|
|
|
|
</span>
|
|
|
|
|
<span class="marginLeftRight">
|
|
|
|
|
<mat-checkbox color="primary" [(ngModel)]="isShowLegend" (change)='changeLegend($event)'
|
|
|
|
|
[disabled]='this.canvasData.selectPanelPoint.BackgroundImageUrl'></mat-checkbox> 显示图例
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<button (click)="copyAsset()" class="copytobutn marginLeftRight" mat-button title="复制" *ngIf="isEditPattern">
|
|
|
|
|
复制<mat-icon>library_books</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<button (click)="pasteAsset()" class="copytobutn marginLeftRight" mat-button title="粘贴" *ngIf="isEditPattern">
|
|
|
|
|
粘贴<mat-icon>screen_share</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
<span title="适应缩放" class="zoom" (click)="adaptZoom()">
|
|
|
|
|
<img src="/assets/images/sysf.png" alt="">
|
|
|
|
|
适应缩放
|
|
|
|
|
</span>
|
|
|
|
|
<span title="重置缩放" class="zoom" (click)="resetZoom()">
|
|
|
|
|
<img src="/assets/images/czsf.png" alt="">
|
|
|
|
|
重置缩放
|
|
|
|
|
</span>
|
|
|
|
|
<span title="导出图片" class="zoom" (click)="takeScreenshot()">
|
|
|
|
|
<mat-icon>image</mat-icon>
|
|
|
|
|
导出图片
|
|
|
|
|
</span>
|
|
|
|
|
<div class="bigBox">
|
|
|
|
|
<div class="weatherBox" [ngClass]="{'opened': weatherBtn,'close': !weatherBtn}">
|
|
|
|
|
<span class="name">天气</span>
|
|
|
|
|
<input [disabled]="!isEditPattern" class="weatherInput" [(ngModel)]="canvasData.selectPanelPointBaseData.weather" type="text"
|
|
|
|
|
placeholder="最多输入10字节" maxlength="10">
|
|
|
|
|
<span class="name">气温</span>
|
|
|
|
|
<div style="display: inline-block;position: relative;">
|
|
|
|
|
<input [disabled]="!isEditPattern" [(ngModel)]="canvasData.selectPanelPointBaseData.airTemperature" style="width: 60px;" type="number"
|
|
|
|
|
value="0" oninput="if(value.length>2)value=value.slice(0,2)">
|
|
|
|
|
<span style="position: absolute;right: 20px;top: 10px;color: #9c9fa5;">℃</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span class="name">风力</span>
|
|
|
|
|
<select [disabled]="!isEditPattern" class="weatherSelect" [(ngModel)]="canvasData.selectPanelPointBaseData.windScale">
|
|
|
|
|
<option value="0">0(无风)</option>
|
|
|
|
|
<option value="1">1(软风)</option>
|
|
|
|
|
<option value="2">2(轻风)</option>
|
|
|
|
|
<option value="3">3(微风)</option>
|
|
|
|
|
<option value="4">4(和风)</option>
|
|
|
|
|
<option value="5">5(清风)</option>
|
|
|
|
|
<option value="6">6(强风)</option>
|
|
|
|
|
</select>
|
|
|
|
|
<span class="name">风向</span>
|
|
|
|
|
<select [disabled]="!isEditPattern" class="weatherSelect" [(ngModel)]="canvasData.selectPanelPointBaseData.windDirection">
|
|
|
|
|
<option value="0">东</option>
|
|
|
|
|
<option value="1">西</option>
|
|
|
|
|
<option value="2">南</option>
|
|
|
|
|
<option value="3">北</option>
|
|
|
|
|
<option value="4">东南</option>
|
|
|
|
|
<option value="5">西南</option>
|
|
|
|
|
<option value="6">东北</option>
|
|
|
|
|
<option value="7">西北</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<label title="保存" (click)="saveSite()" class="rightSave" *ngIf="isEditPattern">
|
|
|
|
|
<mat-icon style="vertical-align: sub;">description</mat-icon>保存
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--功能区 -->
|
|
|
|
|
<div class="functionalDomain">
|
|
|
|
|
<div class='functionalDomainContent' id="functionalDomainContent">
|
|
|
|
|
|
|
|
|
|
<!-- H5Canvas -->
|
|
|
|
|
<app-working-area #canvas [init]='this'></app-working-area>
|
|
|
|
|
<!-- H5Canvas -->
|
|
|
|
|
<!-- 中间建筑+楼层 -->
|
|
|
|
|
<div class="centerBuildingDiv" style="user-select: none;" cdkDrag *ngIf="!pattern" (mousewheel)="$event.stopPropagation()" >
|
|
|
|
|
<div class="centerTotal">
|
|
|
|
|
<div class="centerTotalHeader">
|
|
|
|
|
<mat-icon cdkDragHandle matTooltip="可移动窗口" matTooltipPosition="above" class="move">open_with</mat-icon>
|
|
|
|
|
<label (click)='togglebeforeOneCheckedBuilding()' class="centerTotalTitle">
|
|
|
|
|
<label class="overflowText">{{beforeOneCheckedBuilding.name}}</label>
|
|
|
|
|
<mat-icon *ngIf="beforeOneCheckedBuildingIsShow">keyboard_arrow_up</mat-icon>
|
|
|
|
|
<mat-icon *ngIf="!beforeOneCheckedBuildingIsShow">keyboard_arrow_down</mat-icon>
|
|
|
|
|
</label>
|
|
|
|
|
<a href="javascript:;" class="fireForce" *ngIf="isEditPattern && !pattern">
|
|
|
|
|
<img src="../../../assets/images/fire.png"
|
|
|
|
|
*ngIf="beforeOneCheckedBuilding.fire && beforeOneCheckedBuilding.fire==2">
|
|
|
|
|
<img src="../../../assets/images/noFire.png"
|
|
|
|
|
*ngIf="beforeOneCheckedBuilding.fire && beforeOneCheckedBuilding.fire==1">
|
|
|
|
|
<img src="../../../assets/images/force.png"
|
|
|
|
|
*ngIf="beforeOneCheckedBuilding.force && beforeOneCheckedBuilding.force==2">
|
|
|
|
|
<img src="../../../assets/images/noForce.png"
|
|
|
|
|
*ngIf="beforeOneCheckedBuilding.force && beforeOneCheckedBuilding.force==1">
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="everyTotal overflowText" *ngFor="let item of sitePlanData;let key = index"
|
|
|
|
|
[ngClass]="{'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)'>
|
|
|
|
|
{{item.name}}
|
|
|
|
|
<a href="javascript:;" class="fireForce" *ngIf="isEditPattern && !pattern">
|
|
|
|
|
<img src="../../../assets/images/fire.png" *ngIf="item.fire && item.fire==2">
|
|
|
|
|
<img src="../../../assets/images/noFire.png" *ngIf="item.fire && item.fire==1">
|
|
|
|
|
<img src="../../../assets/images/force.png" *ngIf="item.force && item.force==2">
|
|
|
|
|
<img src="../../../assets/images/noForce.png" *ngIf="item.force && item.force==1">
|
|
|
|
|
</a>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="width: 5px;height: 100%;opacity: 0;" [hidden]="!beforeOneCheckedBuildingIsShow"></div>
|
|
|
|
|
<div class="centerTotal" [hidden]="!beforeOneCheckedBuildingIsShow">
|
|
|
|
|
<div class="everyTotal" (click)="checkedBuilding({name:'总平面图'},-1)"
|
|
|
|
|
[ngClass]="{'buildingbtnchecked': checkedBuildingIndex==-1}">总平面图</div>
|
|
|
|
|
<div class="everyTotal overflowText" *ngFor="let item of allBuildings;let key = index"
|
|
|
|
|
(click)="checkedBuilding(item,key)" [ngClass]="{'buildingbtnchecked': checkedBuildingIndex==key}">
|
|
|
|
|
{{item.name}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 中间建筑+楼层 -->
|
|
|
|
|
<!-- 左侧操作栏 -->
|
|
|
|
|
<div id="leftDiv" (mousewheel)="$event.stopPropagation()" class='functionalDomainLeft publicCss'
|
|
|
|
|
[ngClass]="{'togglePanel': toggleExpandPanel==true,'scenarioAssignment': !pattern}" style="user-select: none;">
|
|
|
|
|
<div class="leftDragDiv" (mousedown)="leftDivMouseDown($event)"></div>
|
|
|
|
|
<!-- 处置预案 -->
|
|
|
|
|
<div class="handlePlan" *ngIf="!pattern">
|
|
|
|
|
<div class="planarGraphHeader" (click)='toggleHandlePlan()'>
|
|
|
|
|
<mat-icon *ngIf="toggleHandlePlans">keyboard_arrow_up</mat-icon>
|
|
|
|
|
<mat-icon *ngIf="!toggleHandlePlans">keyboard_arrow_down</mat-icon>
|
|
|
|
|
<label class="overflowText" style="font-weight: 550;">处置预案</label>
|
|
|
|
|
<label class="btnlabel" style="margin-left: 20px;" *ngIf="isEditPattern">
|
|
|
|
|
<mat-icon style="color: #c2a40ce8;" title="计算差异" (click)='countValue($event)'>flash_on</mat-icon>
|
|
|
|
|
<mat-icon style="margin: 0 3px;" title="新建空节点" (click)='addPanelPoint($event,null,treeData)'>add
|
|
|
|
|
</mat-icon>
|
|
|
|
|
<mat-icon class="matIcons" (click)='addBGCPanelPoint($event)'>photo_size_select_actual</mat-icon>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div [hidden]="!toggleHandlePlans">
|
|
|
|
|
|
|
|
|
|
<nz-tree #nzTreeComponent [nzData]="treeData" nzBlockNode nzDraggable (nzOnDrop)="nzEvent($event)"
|
|
|
|
|
[nzTreeTemplate]="nzTreeTemplate" [nzBeforeDrop]="beforeDrop" [nzExpandedKeys]="defaultExpandedKeys">
|
|
|
|
|
</nz-tree>
|
|
|
|
|
<ng-template #nzTreeTemplate let-node let-origin="origin">
|
|
|
|
|
<div id="terrNodePublic" (click)='selectanelPoint(node.origin)'
|
|
|
|
|
[ngClass]="{'selectanelPoint': selectDisposalNode==node.origin.id,'selectanelPointData': canvasData.selectPanelPoint.DisposalNodeId==node.origin.id}">
|
|
|
|
|
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</label>
|
|
|
|
|
<div class="scoreDiv" *ngIf="isEditPattern">
|
|
|
|
|
<mat-icon *ngIf="!node.origin.sitePlanId && !node.origin.buildingAreaId"
|
|
|
|
|
(click)='editPanelPoint($event,node)'>edit</mat-icon>
|
|
|
|
|
<mat-icon *ngIf="node.level===0" (click)='addPanelPoint($event,node.origin,null)'>add</mat-icon>
|
|
|
|
|
<mat-icon *ngIf="!node.origin.sitePlanId && !node.origin.buildingAreaId"
|
|
|
|
|
(click)='copyPanelPoint($event,node,treeData)'>library_books</mat-icon>
|
|
|
|
|
<mat-icon (click)='deletePanelPoint($event,node.origin)'>delete_forever</mat-icon>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 处置预案 -->
|
|
|
|
|
|
|
|
|
|
<!-- 平面图 -->
|
|
|
|
|
<div class="planarGraph" *ngIf="pattern">
|
|
|
|
|
<div class="planarGraphHeader" (click)='togglePlanarGraph()'>
|
|
|
|
|
<mat-icon *ngIf="togglePlane">keyboard_arrow_up</mat-icon>
|
|
|
|
|
<mat-icon *ngIf="!togglePlane">keyboard_arrow_down</mat-icon>
|
|
|
|
|
<label class="overflowText" style="font-weight: 550;">平面图</label>
|
|
|
|
|
<label class="hover" *ngIf="isEditPattern && pattern">
|
|
|
|
|
<mat-icon (click)='foundPanel($event)'>add</mat-icon>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div [hidden]="!togglePlane">
|
|
|
|
|
<div class="sitePlanContent" *ngFor="let item of sitePlanData;let key = index"
|
|
|
|
|
[ngClass]="{'isRefugeStorey':item.isRefugeStorey==true,'selectSitePlan': selectSitePlanIndex==key}"
|
|
|
|
|
(click)='selectSitePlan(item,key)'>
|
|
|
|
|
<label class="overflowText" [title]="item.name" style="display:inline-block; max-width: 145px;">
|
|
|
|
|
<mat-icon *ngIf="!item.imageUrl" class="matIcons">broken_image</mat-icon>{{item.name}}
|
|
|
|
|
</label>
|
|
|
|
|
<a href="javascript:;" class="a-upload" *ngIf="selectSitePlanIndex==key && isEditPattern && pattern"
|
|
|
|
|
title="替换底图">
|
|
|
|
|
<input type="file" (change)='replaceBaseMap($event,item)' accept="image/*">
|
|
|
|
|
<mat-icon class="matIcons">photo_size_select_actual</mat-icon>
|
|
|
|
|
</a>
|
|
|
|
|
<a href="javascript:;" id="a-uploadImg"
|
|
|
|
|
*ngIf="selectSitePlanIndex==key && !item.imageUrl && isEditPattern" title="上传底图">
|
|
|
|
|
<input type="file" (change)='replaceBaseMap($event,item)' accept="image/*">
|
|
|
|
|
<img src="../../../assets/images/upload.jpg">
|
|
|
|
|
</a>
|
|
|
|
|
<!-- 右边定位操作栏 -->
|
|
|
|
|
<div id="rightOperate" *ngIf="selectSitePlanIndex==key && item.imageUrl && isEditPattern"
|
|
|
|
|
(click)="$event.stopPropagation();">
|
|
|
|
|
<p class="functionButton">
|
|
|
|
|
<mat-icon class="functionIcon bigFunctionIcon" title="上移" (click)='moveUp(item,key)'>keyboard_arrow_up
|
|
|
|
|
</mat-icon>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="functionButton">
|
|
|
|
|
<mat-icon class="functionIcon" title="编辑属性" (click)='editPlaneData(item)'>edit</mat-icon>
|
|
|
|
|
<mat-icon class="functionIcon" title="删除" (click)="deletePlaneData(item)">delete</mat-icon>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="functionButton">
|
|
|
|
|
<mat-icon class="functionIcon" title="旋转底图" (click)='revolveImg(item)'>cached</mat-icon>
|
|
|
|
|
<mat-icon class="functionIcon" title="复制" (click)="duplicateLayer(item)">library_books</mat-icon>
|
|
|
|
|
</p>
|
|
|
|
|
<p class="functionButton">
|
|
|
|
|
<mat-icon class="functionIcon bigFunctionIcon" title="下移" (click)='moveDown(item,key)'>
|
|
|
|
|
keyboard_arrow_down</mat-icon>
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 右边定位操作栏 -->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- 素材库 -->
|
|
|
|
|
<div id="materialBank" *ngIf="isEditPattern" [ngClass]="{'selectEditMode': pattern}">
|
|
|
|
|
<div class="planarGraphHeader" (click)='toggleMaterial()'>
|
|
|
|
|
<mat-icon *ngIf="toggleMaterialBank">keyboard_arrow_up</mat-icon>
|
|
|
|
|
<mat-icon *ngIf="!toggleMaterialBank">keyboard_arrow_down</mat-icon>
|
|
|
|
|
<label class="overflowText" style="font-weight: 550;">素材库</label>
|
|
|
|
|
</div>
|
|
|
|
|
<div [hidden]="!toggleMaterialBank" [ngClass]="{'materialBankDIV': pattern}">
|
|
|
|
|
<div>
|
|
|
|
|
<input type="text" class="searchLibrary" [(ngModel)]="searchInput" (ngModelChange)="libraryChange()">
|
|
|
|
|
<div class="panelLibraryFlex" *ngIf="searchLibrary.length">
|
|
|
|
|
<div class="imgBox" *ngFor="let items of searchLibrary;let key = index" [title]="items.name"
|
|
|
|
|
[ngClass]="{'selectImg': selectLibrary=='搜索' && selectImageIndex==key}"
|
|
|
|
|
(click)='selectImg({name:"搜索"},items,key)'>
|
|
|
|
|
<img [src]="items.imageUrl" onerror="javascript:this.src='../../../assets/images/noImg.png'">
|
|
|
|
|
<p class="overflowText">{{items.name}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<ng-container *ngIf="!searchLibrary.length">
|
|
|
|
|
<mat-accordion *ngFor="let item of allLibrary" id="panelLibrary">
|
|
|
|
|
<mat-expansion-panel (opened)='opened(item)'>
|
|
|
|
|
<mat-expansion-panel-header>
|
|
|
|
|
<label class="text">{{item.name}}</label>
|
|
|
|
|
</mat-expansion-panel-header>
|
|
|
|
|
|
|
|
|
|
<div class="panelLibraryFlex">
|
|
|
|
|
<div class="imgBox" *ngFor="let items of item.images;let key = index" [title]="items.name"
|
|
|
|
|
(click)='selectImg(item,items,key)'
|
|
|
|
|
[ngClass]="{'selectImg': selectLibrary==item.name && selectImageIndex==key}">
|
|
|
|
|
<img [src]="items.imageUrl" onerror="javascript:this.src='../../../assets/images/noImg.png'">
|
|
|
|
|
<p class="overflowText">{{items.name}}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</mat-expansion-panel>
|
|
|
|
|
</mat-accordion>
|
|
|
|
|
</ng-container>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 素材库 -->
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 左侧操作栏 -->
|
|
|
|
|
|
|
|
|
|
<div id="rightDiv" (mousewheel)="$event.stopPropagation()" class="functionalDomainRight publicCss "
|
|
|
|
|
[ngClass]="{'togglePanel2': toggleExpandPanelRight==true}" style="user-select: none;">
|
|
|
|
|
<!-- 右侧div鼠标拖动div -->
|
|
|
|
|
<div style="width: 3px;height: 100%;position: absolute;left: 0;cursor: e-resize;z-index: 1000;"
|
|
|
|
|
(mousedown)="rightDivMouseDown($event)"></div>
|
|
|
|
|
<!-- 属性 -->
|
|
|
|
|
<div [ngClass]="{'forbidden': !isEditPattern}" id="property" class="property"
|
|
|
|
|
style="height: 50%;background-color: white;">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div>
|
|
|
|
|
<span style="user-select: none">属性</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 平面图属性 -->
|
|
|
|
|
<div class="siteproperty" style="user-select: none"
|
|
|
|
|
*ngIf="isShowProperty && isShowAttribute && !isMultipleAsset">
|
|
|
|
|
<p>面积(平方米)</p>
|
|
|
|
|
<div class="siteproperty_size">{{canvasData.selectStorey.area}}</div>
|
|
|
|
|
<p>详情</p>
|
|
|
|
|
<div class="siteproperty_size">
|
|
|
|
|
{{canvasData.selectStorey.details}}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 素材属性 -->
|
|
|
|
|
<div class="assetsproperty" style="user-select: none"
|
|
|
|
|
*ngIf="isShowProperty && !isShowAttribute && !isMultipleAsset">
|
|
|
|
|
<h3 style="text-align: center;font-weight: 900;">{{assetName}}</h3>
|
|
|
|
|
|
|
|
|
|
<div *ngIf="canvasAssetObj.InteractiveMode == 0">
|
|
|
|
|
<p>宽度(像素)</p>
|
|
|
|
|
<input type="number" class="biginput" [(ngModel)]="assetWidth" (input)="assetWidthIunput()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
<p>高度(像素)</p>
|
|
|
|
|
<input type="number" class="biginput" [(ngModel)]="assetHeight" (input)="assetHeightIunput()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
<p>角度</p>
|
|
|
|
|
<div style="width: 100%;display: flex;vertical-align: top;height: 22px;">
|
|
|
|
|
<input type="number" class="smallinput" [(ngModel)]="sliderValue"
|
|
|
|
|
oninput="if(value>360)value=360;if(value<0)value=0;" (input)="assetAngleIunput()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
<mat-slider color="primary" min="0" max="360" step="1" style="bottom: 12px;left: 2px;width: 70%;"
|
|
|
|
|
[(ngModel)]="sliderValue" (change)="assetAngleIunput()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></mat-slider>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 如果是多点连线 或者 矢量图-->
|
|
|
|
|
<div *ngIf="canvasAssetObj.InteractiveMode == 1 || canvasAssetObj.InteractiveMode == 3">
|
|
|
|
|
<p>厚度</p>
|
|
|
|
|
<div style="width: 100%;display: flex;vertical-align: top;height: 22px;">
|
|
|
|
|
<input type="number" class="smallinput" [(ngModel)]="sliderValueThickness"
|
|
|
|
|
oninput="if(value>999)value=999;if(value<0)value=0;" (input)="assetThicknessIunput()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
<mat-slider color="primary" min="0" max="999" step="1" style="bottom: 12px;left: 2px;width: 70%;"
|
|
|
|
|
[(ngModel)]="sliderValueThickness" (change)="assetThicknessIunput()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></mat-slider>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- <p style="margin-top: 4px;margin-bottom: 0px;">是否高亮</p>
|
|
|
|
|
<div>
|
|
|
|
|
<input class="input" [(ngModel)]="isHighLight" type="checkbox" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
<span style="font-size: 14px;">选中高亮</span>
|
|
|
|
|
</div> -->
|
|
|
|
|
<div class="colorBigDiv" *ngIf="canvasAssetObj.FillMode == 0">
|
|
|
|
|
<div class="colorBigTemplateDiv">
|
|
|
|
|
<span>颜色</span>
|
|
|
|
|
<div class="colorTemplateDiv" [style]="{'background-color':selectedcolor}">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="colorDiv" *ngIf="isEditPattern">
|
|
|
|
|
<ul>
|
|
|
|
|
<li (click)="selectcolor(item,key)" class="colorLi" *ngFor="let item of colors,let key=index"
|
|
|
|
|
[style]="{'background-color':item}"></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<span style="color: #9c9fa5;font-size: 14px;">透明度</span>
|
|
|
|
|
<mat-slider color="primary" min="0" max="100%" step="1" style="left: 1px; width: 55%;min-width: 90px;"
|
|
|
|
|
[(ngModel)]="colorDivSliderValue" (change)="colorDivSliderChange()"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></mat-slider>
|
|
|
|
|
<span style="color: #9c9fa5;font-size: 12px;">{{colorDivSliderValue}}%</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngFor="let item of PropertyInfos;index as key ">
|
|
|
|
|
<!-- 单行文本 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 0 && item.PropertyName != '所属单位'">
|
|
|
|
|
<p>{{item.PropertyName}}<span style="font-size: 14px;"
|
|
|
|
|
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
|
|
|
|
|
<input type="text" class="biginput" [value]="item.PropertyValue" (input)="assetInputChange(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngIf="item.PropertyName == '所属单位'">
|
|
|
|
|
<p>{{item.PropertyName}}<span style="font-size: 14px;"
|
|
|
|
|
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
|
|
|
|
|
<div class="orInput">
|
|
|
|
|
<input readonly type="text" class="biginput" [value]="item.PropertyValue"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
<div [hidden]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)" class="changeOr"
|
|
|
|
|
(click)="changeOr()">
|
|
|
|
|
更换
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 多行文本 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 1 && item.PropertyName != '所属单位'">
|
|
|
|
|
<p>{{item.PropertyName}}<span style="font-size: 14px;"
|
|
|
|
|
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
|
|
|
|
|
<textarea class="textarea" name="" id="" [value]="item.PropertyValue"
|
|
|
|
|
(input)="assetInputChange(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 数值 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 2 && item.PropertyName != '所属单位'">
|
|
|
|
|
<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]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 图片数量 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 4" style="height: 140px;">
|
|
|
|
|
<div style="position: relative;width: 100%;height: 21px;margin: 1px 0;">
|
|
|
|
|
<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]="!isEditPattern || (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
|
|
|
|
|
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()"
|
|
|
|
|
*ngIf="isEditPattern">添加</div>
|
|
|
|
|
<div
|
|
|
|
|
style="position: relative;;width: 89%;border:1px solid rgb(208, 211, 214);height: 100px;margin: 6px auto;"
|
|
|
|
|
class="swiper-container">
|
|
|
|
|
<div id="viewerjs" class="swiper-wrapper" [ngClass]="{'noImgCss': imagesArr.length == 0}">
|
|
|
|
|
<div class="swiper-slide" style="text-align: center;" *ngFor="let img of imagesArr"><img
|
|
|
|
|
[src]="img.PropertyValue + '?x-oss-process=image/resize,m_fixed,h_100,w_100'" alt=""
|
|
|
|
|
[attr.data-original]="img.PropertyValue"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 如果需要导航按钮 -->
|
|
|
|
|
<div class="swiper-button-next"></div>
|
|
|
|
|
<div class="swiper-button-prev"></div>
|
|
|
|
|
<span style="position: absolute;right: 2px;top: 2px;cursor: pointer;z-index: 200;"
|
|
|
|
|
*ngIf="isEditPattern">
|
|
|
|
|
<mat-icon class="hoverred" (click)="deleteImg()">delete</mat-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 方向 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 5" class="selectDiv">
|
|
|
|
|
<p style="display: inline-block;">{{item.PropertyName}}</p>
|
|
|
|
|
<select (change)="direction(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (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>
|
|
|
|
|
<option value="3" [selected]="item.PropertyValue =='3'">北</option>
|
|
|
|
|
<option value="4" [selected]="item.PropertyValue =='4'">东南</option>
|
|
|
|
|
<option value="5" [selected]="item.PropertyValue =='5'">西南</option>
|
|
|
|
|
<option value="6" [selected]="item.PropertyValue =='6'">东北</option>
|
|
|
|
|
<option value="7" [selected]="item.PropertyValue =='7'">西北</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 布尔值 是1或否0 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 6">
|
|
|
|
|
<p>{{item.PropertyName}}</p>
|
|
|
|
|
<input [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"
|
|
|
|
|
[checked]="item.PropertyValue == '1'" class="input" type="radio" name="radio"
|
|
|
|
|
(click)="assetRadioChange(item,'1')"><span>是</span>
|
|
|
|
|
<input [disabled]="!isEditPattern || (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]="!isEditPattern || (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>
|
|
|
|
|
<option value="3" [selected]="item.PropertyValue =='3'">低区</option>
|
|
|
|
|
<option value="4" [selected]="item.PropertyValue =='4'">高中区</option>
|
|
|
|
|
<option value="5" [selected]="item.PropertyValue =='5'">高低区</option>
|
|
|
|
|
<option value="6" [selected]="item.PropertyValue =='6'">中低区</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 供给类型 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 8" class="selectDiv">
|
|
|
|
|
<p style="display: inline-block;">{{item.PropertyName}}</p>
|
|
|
|
|
<select (change)="supplyType(item,$event)" value="4"
|
|
|
|
|
[disabled]="!isEditPattern || (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>
|
|
|
|
|
<option value="3" [selected]="item.PropertyValue =='3'">泡沫</option>
|
|
|
|
|
<option value="4" [selected]="item.PropertyValue =='4'">消防</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 框选多个素材属性 -->
|
|
|
|
|
<div class="assetsproperty" style="user-select: none" *ngIf="isShowProperty && isMultipleAsset">
|
|
|
|
|
<div *ngIf="multipleAsset.InteractiveMode == 0">
|
|
|
|
|
<p>宽度(像素)</p>
|
|
|
|
|
<input type="number" class="biginput" [(ngModel)]="multipleAsset.Width"
|
|
|
|
|
(input)="multipleAssetWidthInput()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
<p>高度(像素)</p>
|
|
|
|
|
<input type="number" class="biginput" [(ngModel)]="multipleAsset.Height"
|
|
|
|
|
(input)="multipleAssetHeightInput()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
<p>角度</p>
|
|
|
|
|
<div style="width: 100%;display: flex;vertical-align: top;height: 22px;">
|
|
|
|
|
<input type="number" class="smallinput" [(ngModel)]="multipleAsset.Angle"
|
|
|
|
|
oninput="if(value>360)value=360;if(value<0)value=0;" (input)="multipleAssetAngleInput()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
<mat-slider color="primary" min="0" max="360" step="1" style="bottom: 12px;left: 2px;width: 70%;"
|
|
|
|
|
[(ngModel)]="multipleAsset.Angle" (change)="multipleAssetAngleInput()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
</mat-slider>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 如果是多点连线 -->
|
|
|
|
|
<div *ngIf="multipleAsset.InteractiveMode == 1 || multipleAsset.InteractiveMode == 3">
|
|
|
|
|
<p>厚度</p>
|
|
|
|
|
<div style="width: 100%;display: flex;vertical-align: top;height: 22px;">
|
|
|
|
|
<input type="number" class="smallinput" [(ngModel)]="multipleAsset.Thickness"
|
|
|
|
|
oninput="if(value>999)value=999;if(value<0)value=0;" (input)="multipleAssetThicknessInput()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
<mat-slider color="primary" min="0" max="999" step="1" style="bottom: 12px;left: 2px;width: 70%;"
|
|
|
|
|
[(ngModel)]="multipleAsset.Thickness" (change)="multipleAssetThicknessInput()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
</mat-slider>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="colorBigDiv" *ngIf="multipleAsset.FillMode == 0">
|
|
|
|
|
<div class="colorBigTemplateDiv">
|
|
|
|
|
<span>颜色</span>
|
|
|
|
|
<div class="colorTemplateDiv" [style]="{'background-color':selectedcolor}">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="colorDiv" *ngIf="isEditPattern && firstMultipleAssetData.assetData.GameMode == 0">
|
|
|
|
|
<ul>
|
|
|
|
|
<li (click)="multipleAssetSelectcolor(item,key)" class="colorLi"
|
|
|
|
|
*ngFor="let item of colors,let key=index" [style]="{'background-color':item}"></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<span style="color: #9c9fa5;font-size: 14px;">透明度</span>
|
|
|
|
|
<mat-slider color="primary" min="0" max="100%" step="1" style="left: 1px; width: 55%;min-width: 90px;"
|
|
|
|
|
[(ngModel)]="colorDivSliderValue" (change)="multipleColorDivSliderChange()"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
</mat-slider>
|
|
|
|
|
<span style="color: #9c9fa5;font-size: 12px;">{{colorDivSliderValue}}%</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div *ngFor="let item of multipleAsset.PropertyInfos;index as key ">
|
|
|
|
|
<!-- 单行文本 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 0">
|
|
|
|
|
<p>{{item.PropertyName}}<span style="font-size: 14px;"
|
|
|
|
|
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
|
|
|
|
|
<input type="text" class="biginput" [name]="item.PropertyName" [(ngModel)]="item.PropertyValue"
|
|
|
|
|
(input)="multipleAssetInputChange(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 多行文本 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 1">
|
|
|
|
|
<p>{{item.PropertyName}}<span style="font-size: 14px;"
|
|
|
|
|
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
|
|
|
|
|
<textarea class="textarea" name="" id="" [(ngModel)]="item.PropertyValue"
|
|
|
|
|
(input)="multipleAssetInputChange(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 数值 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 2">
|
|
|
|
|
<p>{{item.PropertyName}}<span style="font-size: 14px;"
|
|
|
|
|
*ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
|
|
|
|
|
<input type="number" class="biginput" [(ngModel)]="item.PropertyValue"
|
|
|
|
|
(input)="multipleAssetInputChange(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 方向 -->
|
|
|
|
|
<!-- <div *ngIf="item.PropertyType == 5 " class="selectDiv">
|
|
|
|
|
<p style="display: inline-block;">{{item.PropertyName}}</p>
|
|
|
|
|
<select [(ngModel)]="item.PropertyValue" (change)="direction(item,$event)" [disabled]="!isEditPattern || (firstMultipleAssetData.assetData.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>
|
|
|
|
|
<option value ="3" [selected]="item.PropertyValue =='3'">北</option>
|
|
|
|
|
<option value ="4" [selected]="item.PropertyValue =='4'">东南</option>
|
|
|
|
|
<option value ="5" [selected]="item.PropertyValue =='5'">西南</option>
|
|
|
|
|
<option value ="6" [selected]="item.PropertyValue =='6'">东北</option>
|
|
|
|
|
<option value ="7" [selected]="item.PropertyValue =='7'">西北</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div> -->
|
|
|
|
|
<!-- 布尔值 是1或否0 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 6">
|
|
|
|
|
<p>{{item.PropertyName}}</p>
|
|
|
|
|
<input value='1' [(ngModel)]="item.PropertyValue"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)"
|
|
|
|
|
class="input" type="radio" name="radio" (click)="multipleAssetRadioChange(item,'1')"><span>是</span>
|
|
|
|
|
<input value='0' [(ngModel)]="item.PropertyValue"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)"
|
|
|
|
|
class="input" type="radio" name="radio" (click)="multipleAssetRadioChange(item,'0')"><span>否</span>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 供给区域 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 7" class="selectDiv">
|
|
|
|
|
<p style="display: inline-block;">{{item.PropertyName}}</p>
|
|
|
|
|
<select [(ngModel)]="item.PropertyValue" (change)="multipleSupplyArea(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
<option value="0">全部</option>
|
|
|
|
|
<option value="1">高区</option>
|
|
|
|
|
<option value="2">中区</option>
|
|
|
|
|
<option value="3">低区</option>
|
|
|
|
|
<option value="4">高中区</option>
|
|
|
|
|
<option value="5">高低区</option>
|
|
|
|
|
<option value="6">中低区</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 供给类型 -->
|
|
|
|
|
<div *ngIf="item.PropertyType == 8" class="selectDiv">
|
|
|
|
|
<p style="display: inline-block;">{{item.PropertyName}}</p>
|
|
|
|
|
<select [(ngModel)]="item.PropertyValue" (change)="multipleSupplyArea(item,$event)"
|
|
|
|
|
[disabled]="!isEditPattern || (firstMultipleAssetData.assetData.GameMode == 0 && !pattern)">
|
|
|
|
|
<option value="0">消火栓</option>
|
|
|
|
|
<option value="1">喷淋</option>
|
|
|
|
|
<option value="2">水幕</option>
|
|
|
|
|
<option value="3">泡沫</option>
|
|
|
|
|
<option value="4">消防</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 消防要素 -->
|
|
|
|
|
<div id="firecategories" class="firecategories" style="height: 50%;background-color: white;">
|
|
|
|
|
<!-- 素材属性div鼠标拖动div -->
|
|
|
|
|
<div style="height:3px;width: 100%;position: absolute;top: 0;cursor: n-resize;z-index: 1000;"
|
|
|
|
|
(mousedown)="firecategoriesDivMouseDown($event)"></div>
|
|
|
|
|
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div>
|
|
|
|
|
<span style="user-select: none">消防要素</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="firecategoriesTree">
|
|
|
|
|
<div class="hideAllTreeNode" (click)='toggoleAllTreenode()' *ngIf="allFireElements.length">
|
|
|
|
|
<label>全部显示/隐藏</label>
|
|
|
|
|
<mat-icon [ngClass]="{'icongray': hideAllTreenode == false}">visibility</mat-icon>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- 消防列表树写在这里 -->
|
|
|
|
|
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl">
|
|
|
|
|
|
|
|
|
|
<mat-tree-node [ngClass]="{'isLookPattern': !node.isLookPattern && !isEditPattern}"
|
|
|
|
|
*matTreeNodeDef="let node;" matTreeNodePadding cdkTreeNodePaddingIndent='26'
|
|
|
|
|
(click)="clickTreeNode(node)" class="treeNode">
|
|
|
|
|
<button mat-icon-button disabled></button>
|
|
|
|
|
<span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}">
|
|
|
|
|
{{node.name}}
|
|
|
|
|
</span>
|
|
|
|
|
<span *ngIf="node.isTemplate">({{node.children.length}})</span>
|
|
|
|
|
<span class="isLookCss" (click)="clickLookItem(node)">
|
|
|
|
|
<mat-icon [ngClass]="{'icongray': node.isLook == false}">visibility</mat-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</mat-tree-node>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<mat-tree-node [ngClass]="{'isLookPattern': !node.isLookPattern && !isEditPattern}"
|
|
|
|
|
*matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)="clickTreeNode(node)"
|
|
|
|
|
class="treeNode">
|
|
|
|
|
<button mat-icon-button matTreeNodeToggle [attr.aria-label]="'toggle ' + node.name">
|
|
|
|
|
<mat-icon class="mat-icon-rtl-mirror">
|
|
|
|
|
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}
|
|
|
|
|
</mat-icon>
|
|
|
|
|
</button>
|
|
|
|
|
<span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}">
|
|
|
|
|
{{node.name}}
|
|
|
|
|
</span>
|
|
|
|
|
<span *ngIf="node.isTemplate && node.isNewElement">({{node.children.length}})</span>
|
|
|
|
|
<span class="isLookCss" (click)="clickLookItem(node)">
|
|
|
|
|
<mat-icon [ngClass]="{'icongray': node.isLook == false}">visibility</mat-icon>
|
|
|
|
|
</span>
|
|
|
|
|
</mat-tree-node>
|
|
|
|
|
|
|
|
|
|
</mat-tree>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div id="bottomDiv" (mousewheel)="$event.stopPropagation()" [ngClass]="{'togglePanel3': toggleExpandPanel==true}"
|
|
|
|
|
class="bottomCss" *ngIf="!pattern">
|
|
|
|
|
<div class="dragDiv" (mousedown)="bottomDivMouseDown($event)"></div>
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div (click)="details()" [ngClass]="{'detailsAndattentBtn': detailsAndattentBtn}">
|
|
|
|
|
节点详情
|
|
|
|
|
</div>
|
|
|
|
|
<div (click)="attent()" [ngClass]="{'detailsAndattentBtn': !detailsAndattentBtn}">
|
|
|
|
|
注意事项
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="body">
|
|
|
|
|
<textarea [disabled]="!isEditPattern" *ngIf="detailsAndattentBtn" name="" id="" rows="10"
|
|
|
|
|
[(ngModel)]="canvasData.selectPanelPointBaseData.description"></textarea>
|
|
|
|
|
<textarea [disabled]="!isEditPattern" *ngIf="!detailsAndattentBtn" name="" id="" rows="10"
|
|
|
|
|
[(ngModel)]="canvasData.selectPanelPointBaseData.notes"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|