|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
|
|
|
|
|
<!-- header头部 --> |
|
|
|
|
<div class="header"> |
|
|
|
|
<button mat-button (click)="drawer.toggle()"> |
|
|
|
|
<button mat-button (click)="toggle()"> |
|
|
|
|
<mat-icon style="vertical-align: middle;">toc</mat-icon> |
|
|
|
|
</button> |
|
|
|
|
|
|
|
|
@ -57,35 +57,38 @@
|
|
|
|
|
|
|
|
|
|
<!--功能区 --> |
|
|
|
|
<div class="functionalDomain"> |
|
|
|
|
<mat-drawer-container class='functionalDomainContent' [hasBackdrop]='false'> |
|
|
|
|
<mat-drawer #drawer opened='true' class='functionalDomainLeft'> |
|
|
|
|
<div class='functionalDomainContent'> |
|
|
|
|
<!-- H5Canvas --> |
|
|
|
|
<!-- <app-working-area></app-working-area> --> |
|
|
|
|
<!-- H5Canvas --> |
|
|
|
|
<div class='functionalDomainLeft publicCss' [ngClass]="{'togglePanel': toggleExpandPanel==true}"> |
|
|
|
|
|
|
|
|
|
<!-- 平面图 --> |
|
|
|
|
<mat-accordion id="panel"> |
|
|
|
|
<mat-expansion-panel expanded> |
|
|
|
|
<mat-expansion-panel-header class="panelHeader"> |
|
|
|
|
<label class="overflowText" style="font-weight: 550;">平面图</label> |
|
|
|
|
<label class="hover"><mat-icon (click)='foundPanel($event)'>add</mat-icon></label> |
|
|
|
|
</mat-expansion-panel-header> |
|
|
|
|
<div class="planarGraph"> |
|
|
|
|
<div class="planarGraphHeader" (click)='togglePlanarGraph()'> |
|
|
|
|
<label class="overflowText" style="font-weight: 550;">平面图</label> |
|
|
|
|
<label class="hover"><mat-icon (click)='foundPanel($event)' class="matIcons">add</mat-icon></label> |
|
|
|
|
</div> |
|
|
|
|
<div [hidden]="!togglePlane"> |
|
|
|
|
<div class="sitePlanContent" *ngFor="let item of sitePlanData;let key = index" [ngClass]="{'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)'> |
|
|
|
|
<mat-icon *ngIf="!item.imageUrl">broken_image</mat-icon> |
|
|
|
|
<mat-icon *ngIf="!item.imageUrl" class="matIcons">broken_image</mat-icon> |
|
|
|
|
<label class="overflowText">{{item.name}}</label> |
|
|
|
|
<mat-icon title="替换底图" style="float: right; margin-top: 8px;" *ngIf="selectSitePlanIndex==key">photo_size_select_actual</mat-icon> |
|
|
|
|
<mat-icon title="替换底图" style="float: right; margin-top: 8px;" *ngIf="selectSitePlanIndex==key" class="matIcons">photo_size_select_actual</mat-icon> |
|
|
|
|
<!-- 右边定位操作栏 --> |
|
|
|
|
<!-- <div id="rightOperate"> |
|
|
|
|
|
|
|
|
|
</div> --> |
|
|
|
|
<!-- 右边定位操作栏 --> |
|
|
|
|
<div id="rightOperate"> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</mat-expansion-panel> |
|
|
|
|
</mat-accordion> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<!-- 素材库 --> |
|
|
|
|
<mat-accordion id="panel"> |
|
|
|
|
<mat-expansion-panel> |
|
|
|
|
<mat-expansion-panel-header class="panelHeader"> |
|
|
|
|
<label class="overflowText" style="font-weight: 550;">素材库</label> |
|
|
|
|
</mat-expansion-panel-header> |
|
|
|
|
|
|
|
|
|
<div id="materialBank"> |
|
|
|
|
<div class="planarGraphHeader" (click)='toggleMaterial()'> |
|
|
|
|
<label class="overflowText" style="font-weight: 550;">素材库</label> |
|
|
|
|
</div> |
|
|
|
|
<div style="flex: 1;overflow-y: auto;" [hidden]="!toggleMaterialBank"> |
|
|
|
|
<mat-accordion *ngFor="let item of allLibrary" id="panelLibrary"> |
|
|
|
|
<mat-expansion-panel (opened)='opened(item)'> |
|
|
|
|
<mat-expansion-panel-header> |
|
|
|
@ -102,20 +105,14 @@
|
|
|
|
|
|
|
|
|
|
</mat-expansion-panel> |
|
|
|
|
</mat-accordion> |
|
|
|
|
|
|
|
|
|
</mat-expansion-panel> |
|
|
|
|
</mat-accordion> |
|
|
|
|
|
|
|
|
|
</mat-drawer> |
|
|
|
|
<mat-drawer-content id='functionalDomainRight'> |
|
|
|
|
<div id="h5Unity"> |
|
|
|
|
<div id='h5Canvas'> |
|
|
|
|
<!-- H5Canvas --> |
|
|
|
|
<!-- <app-working-area></app-working-area> --> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="rightAttribute"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="functionalDomainRight publicCss "> |
|
|
|
|
<!-- 属性 --> |
|
|
|
|
<div class="property" style="height: 50%;"> |
|
|
|
|
<div class="title"> |
|
|
|
@ -131,7 +128,7 @@
|
|
|
|
|
<div class="siteproperty_details">京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。京中有善口技者,阿巴阿巴阿巴。 </div> |
|
|
|
|
</div> |
|
|
|
|
<!-- 素材属性 --> |
|
|
|
|
<div class="assetsproperty" style=""> |
|
|
|
|
<div class="assetsproperty"> |
|
|
|
|
<h3 style="text-align: center;font-weight: 900;">实景照片</h3> |
|
|
|
|
<p>宽度(像素)</p> |
|
|
|
|
<input type="text" class="biginput"> |
|
|
|
@ -157,10 +154,9 @@
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</mat-drawer-content> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</mat-drawer-container> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |