45 changed files with 3232 additions and 590 deletions
@ -0,0 +1,15 @@
|
||||
<div class="addWaterBox"> |
||||
<div class="topbox"> |
||||
<span>新增消防力量</span> |
||||
</div> |
||||
<div class="contant"> |
||||
<div (click)="selecteAddType(item,key)" *ngFor="let item of addList;let key = index" [ngClass]="{selectedDiv: item.id == selectedFireForceTypeIndex}"> |
||||
<!-- <img [src]="item.src" alt=""> --> |
||||
{{item.name}} |
||||
</div> |
||||
</div> |
||||
<div class="btnbox"> |
||||
<button mat-flat-button color="primary" (click)="confirm()">确定</button> |
||||
<button mat-flat-button style="background-color: #F2F4F6;" mat-dialog-close>取消</button> |
||||
</div> |
||||
</div> |
@ -1,8 +1,516 @@
|
||||
<div class="box"> |
||||
<div class="box" style="width: 100%;height: 100%;overflow: hidden;"> |
||||
<div class="listbox"> |
||||
<div class="topbox"> |
||||
<div class="add"> |
||||
<div> |
||||
<mat-slide-toggle color="primary" (change)='slideChange($event)' checked labelPosition='before'>列表过滤</mat-slide-toggle> |
||||
</div> |
||||
<div> |
||||
<button (click)="addFireForce()" style="width: 68px;" mat-flat-button color="primary">新增</button> |
||||
</div> |
||||
</div> |
||||
<div class="searchbox" *ngIf="isCheckedOfSearchDiv"> |
||||
<div class="inputbox"> |
||||
<span> |
||||
关键字: |
||||
</span> |
||||
<input type="text" placeholder="请输入名称/类别" [(ngModel)]="searchForm.name"/> |
||||
</div> |
||||
<div class="inputbox"> |
||||
<span> |
||||
完整度: |
||||
</span> |
||||
<select [(ngModel)]="searchForm.integrityNum" [ngClass]="{'gray': searchForm.integrityNum == ''}"> |
||||
<option value='' selected disabled style='display:none;'>请选择</option> |
||||
<option *ngFor="let item of listIntegrityNum" [value]="item.id">{{item.name}}</option> |
||||
</select> |
||||
</div> |
||||
<div class="searchbtn"> |
||||
<button (click)="searchList()" style="width: 100%;" mat-flat-button color="primary"><mat-icon style="width: 20px;height: 20px;font-size: 20px;">search</mat-icon>搜索</button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div style="height: 1px;width: 100%;background-color: #F2F4F6;"></div> |
||||
<div class="contantbox"> |
||||
<div class="title"> |
||||
<span>消防队</span> |
||||
<span>完整度</span> |
||||
</div> |
||||
<div class="fireForceTree" id="fireForceTree"> |
||||
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl" > |
||||
<mat-tree-node (click)="selectTreeNode(node)" [ngClass]="{'selectedTreeNode': node.id == selectedFireForceId}" *matTreeNodeDef="let node;" matTreeNodePadding matTreeNodePaddingIndent='10px'> |
||||
|
||||
<button mat-icon-button disabled ></button> |
||||
<span class="nodename">{{node.name}}</span> |
||||
|
||||
<div class="integrity"> |
||||
|
||||
</div> |
||||
<div class="deletebtn" (click)="deleteWater(node,$event)"><mat-icon>highlight_off</mat-icon></div> |
||||
</mat-tree-node> |
||||
|
||||
<mat-tree-node (click)="selectTreeNode(node)" [ngClass]="{'selectedTreeNode': node.id == selectedFireForceId}" *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding matTreeNodePaddingIndent='10px'> |
||||
|
||||
<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 class="nodename">{{node.name}}</span> |
||||
<div class="integrity"> |
||||
|
||||
</div> |
||||
<div class="deletebtn" (click)="deleteWater(node,$event)"><mat-icon>highlight_off</mat-icon></div> |
||||
</mat-tree-node> |
||||
</mat-tree> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="mapbox"> |
||||
|
||||
<div class="mapcheckbox"> |
||||
<mat-checkbox color="primary" *ngFor="let item of checkBoxList">{{item.name}}</mat-checkbox> |
||||
</div> |
||||
<div id="map" class="map" style="overflow: hidden;"> |
||||
<div id="container"></div> |
||||
<div class="gistopbox hidden" [ngClass]="{'show': isGisTopBox}"> |
||||
<div class="inputBox"> |
||||
<span>搜索: </span> |
||||
<input name="position" [(ngModel)]="searchTitle" id="tipinput" class="positionInput" type="text" autocomplete="off"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="detailsbox" *ngIf="selectedFireForceLevel != null"> |
||||
<div class="tabsbox"> |
||||
<div class="tabs"> |
||||
<div (click)="selectedTab(1)" [ngClass]="{'selectedBtn': tabIndex == 1}"> |
||||
<span>详情</span> |
||||
</div> |
||||
<div (click)="selectedTab(2)" [ngClass]="{'selectedBtn': tabIndex == 2}"> |
||||
<span>车辆装备</span> |
||||
</div> |
||||
<div (click)="selectedTab(3)" [ngClass]="{'selectedBtn': tabIndex == 3}"> |
||||
<span>相关资料</span> |
||||
</div> |
||||
</div> |
||||
<div class="btnbox"> |
||||
<span class="save" (click)="save()"><mat-icon>save</mat-icon>保存</span> |
||||
<span class="submitAudit"><mat-icon>open_in_browser</mat-icon>提交审核</span> |
||||
</div> |
||||
</div> |
||||
<!-- 详情 --> |
||||
<div class="contant" *ngIf="tabIndex == 1"> |
||||
<!-- 总队 支队 联系方式不同--> |
||||
<div *ngIf="selectedFireForceLevel == 0 || selectedFireForceLevel == 1"> |
||||
<p>基本信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='6' rowspan='1'> |
||||
<span> |
||||
<span style="color: red;">*</span> |
||||
队站名称: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.stationName" type="text" style="width:88%;"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
联系电话: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.phoneNumber" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
传真: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.faxNumber" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
辖区面积: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.jurisdictionArea" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='6' rowspan='2'> |
||||
<span> |
||||
备注: |
||||
</span> |
||||
<textarea [(ngModel)]="FireForceDetailInfo.remark" style="height: 80%;width: 84%;" name="" id="" cols="30" rows="10"></textarea> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<p>位置信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
地址: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.address" type="text" style="width:76%;"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
经度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.x" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<span> |
||||
纬度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.y" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<button (click)="setPosition()" style="width:85px;text-align: center;" mat-flat-button color="primary"> |
||||
<mat-icon style="width: 20px;height: 20px;font-size: 20px;">place</mat-icon>位置 |
||||
</button> |
||||
</mat-grid-tile> |
||||
|
||||
</mat-grid-list> |
||||
<p>人员数量</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
现役官兵人数: |
||||
</span> |
||||
<input [(ngModel)]="ZongpersonCountData[0].PropertyValue" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
政府专职消防员数: |
||||
</span> |
||||
<input [(ngModel)]="ZongpersonCountData[1].PropertyValue" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
消防文员数: |
||||
</span> |
||||
<input [(ngModel)]="ZongpersonCountData[2].PropertyValue" type="text"> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<p>联系方式</p> |
||||
<mat-grid-list cols="6" rowHeight="40px" *ngIf="selectedFireForceLevel == 0"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
总队长名称: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZongcontactData[0].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
总队长联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZongcontactData[1].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
总队政委姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZongcontactData[2].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
总队政委联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZongcontactData[3].PropertyValue"> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<mat-grid-list cols="6" rowHeight="40px" *ngIf="selectedFireForceLevel == 1"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
支队长姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZhicontactData[0].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
支队长联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZhicontactData[1].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
支队政委姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZhicontactData[2].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
支队政委联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="ZhicontactData[3].PropertyValue"> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
</div> |
||||
<!-- 大队 中队--> |
||||
<div *ngIf="selectedFireForceLevel == 2 || selectedFireForceLevel == 3"> |
||||
<p>基本信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='6' rowspan='1'> |
||||
<span> |
||||
<span style="color: red;">*</span> |
||||
队站名称: |
||||
</span> |
||||
<input type="text" style="width:81%;" [(ngModel)]="FireForceDetailInfo.stationName"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
值班电话: |
||||
</span> |
||||
<input type="text" [(ngModel)]="FireForceDetailInfo.phoneNumber"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
辖区面积: |
||||
</span> |
||||
<input type="text" [(ngModel)]="FireForceDetailInfo.jurisdictionArea"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='6' rowspan='2'> |
||||
<span> |
||||
备注: |
||||
</span> |
||||
<textarea [(ngModel)]="FireForceDetailInfo.remark" style="height: 80%;width: 84%;" name="" id="" cols="30" rows="10"></textarea> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<p>位置信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
地址: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.address" type="text" style="width:76%;"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
经度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.x" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<span> |
||||
纬度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.y" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<button (click)="setPosition()" style="width:85px;text-align: center;" mat-flat-button color="primary"> |
||||
<mat-icon style="width: 20px;height: 20px;font-size: 20px;">place</mat-icon>位置 |
||||
</button> |
||||
</mat-grid-tile> |
||||
|
||||
</mat-grid-list> |
||||
<p>人员数量</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
现役人数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongpersonCountData[0].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
政府专职消防员数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongpersonCountData[1].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
每日执勤人数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongpersonCountData[2].PropertyValue"> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<p>联系方式</p> |
||||
<mat-grid-list cols="6" rowHeight="40px" > |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
站长姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[0].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
站长联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[1].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
指导员姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[2].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
指导员联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[3].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副指导员姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[4].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副指导员联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[5].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副站长一姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[6].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副站长一联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[7].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副站长二姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[8].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副站长二联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[9].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副站长三姓名: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[10].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
副站长三联系方式: |
||||
</span> |
||||
<input type="text" [(ngModel)]="DaZhongcontactData[11].PropertyValue"> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
</div> |
||||
<!-- 其他消防力量 --> |
||||
<div *ngIf="selectedFireForceLevel == 4 || selectedFireForceLevel == 5 || selectedFireForceLevel == 6"> |
||||
<p>基本信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
<span style="color: red;">*</span> |
||||
队伍类型: |
||||
</span> |
||||
<select disabled [(ngModel)]="selectedFireForceLevel"> |
||||
<option value="4">微型消防站</option> |
||||
<option value="5">企业专职消防队</option> |
||||
<option value="6">义务(志愿)消防队</option> |
||||
<!-- <option value="3">其他</option> --> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
<span style="color: red;">*</span> |
||||
队伍名称: |
||||
</span> |
||||
<input type="text" [(ngModel)]="FireForceDetailInfo.stationName"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
管辖单位: |
||||
</span> |
||||
<input disabled [(ngModel)]="selectedFireForce.name" class="smallwidth" type="text" placeholder="名称"> |
||||
<input disabled [(ngModel)]="selectedFireForce.code" class="smallwidth" type="text" placeholder="编号"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
队长: |
||||
</span> |
||||
<input [(ngModel)]="othercontactData[0].PropertyValue" class="smallwidth" type="text" placeholder="姓名"> |
||||
<input [(ngModel)]="othercontactData[1].PropertyValue" class="smallwidth" type="text" placeholder="联系方式"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
值班电话: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.phoneNumber" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
传真: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.faxNumber" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='6' rowspan='2'> |
||||
<span> |
||||
备注: |
||||
</span> |
||||
<textarea [(ngModel)]="FireForceDetailInfo.remark" style="height: 80%;width: 82%;" name="" id="" cols="30" rows="10"></textarea> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<p>位置信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
地址: |
||||
</span> |
||||
<input [(ngModel)]="FireForceDetailInfo.address" type="text" style="width:76%;"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
经度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.x" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<span> |
||||
纬度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.y" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<button (click)="setPosition()" style="width:85px;text-align: center;" mat-flat-button color="primary"> |
||||
<mat-icon style="width: 20px;height: 20px;font-size: 20px;">place</mat-icon>位置 |
||||
</button> |
||||
</mat-grid-tile> |
||||
|
||||
</mat-grid-list> |
||||
<p>人员数量</p> |
||||
<!-- 其他消防力量 --> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
每日执勤人数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="otherpersonCountData[0].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
消防队员总人数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="otherpersonCountData[1].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
执勤车辆数: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="otherpersonCountData[2].PropertyValue"> |
||||
<span class="unit">辆</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
灭火剂总量: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="otherpersonCountData[3].PropertyValue"> |
||||
<span class="unit">个</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
</div> |
||||
<div style="width: 100%;height: 22px;"> |
||||
|
||||
</div> |
||||
</div> |
||||
<!-- 车辆 --> |
||||
<div class="contant" *ngIf="tabIndex == 2"> |
||||
车辆 |
||||
</div> |
||||
<!-- 相关资料 --> |
||||
<div class="contant" *ngIf="tabIndex == 3"> |
||||
相关资料 |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
@ -0,0 +1,12 @@
|
||||
<div class="addWaterBox"> |
||||
<div class="topbox"> |
||||
<span>新增水源</span> |
||||
</div> |
||||
<div class="contant"> |
||||
<div (click)="selecteAddType(item,key)" *ngFor="let item of addList;let key = index" [ngClass]="{selectedDiv: key == selectedWaterTypeIndex}"><img [src]="item.src" alt="">{{item.name}}</div> |
||||
</div> |
||||
<div class="btnbox"> |
||||
<button mat-flat-button color="primary" (click)="confirm()">确定</button> |
||||
<button mat-flat-button style="background-color: #F2F4F6;" mat-dialog-close>取消</button> |
||||
</div> |
||||
</div> |
@ -1,8 +1,436 @@
|
||||
<div class="box"> |
||||
<div class="box" style="width: 100%;height: 100%;overflow: hidden;"> |
||||
<div class="listbox"> |
||||
|
||||
<div class="topbox"> |
||||
<div class="add"> |
||||
<div> |
||||
<mat-slide-toggle color="primary" (change)='slideChange($event)' checked labelPosition='before'>列表过滤</mat-slide-toggle> |
||||
</div> |
||||
<div> |
||||
<button (click)="addWater()" style="width: 68px;" mat-flat-button color="primary">新增</button> |
||||
</div> |
||||
</div> |
||||
<div class="searchbox" *ngIf="isCheckedOfSearchDiv"> |
||||
<div class="inputbox"> |
||||
<span> |
||||
关键字: |
||||
</span> |
||||
<input type="text" placeholder="请输入名称/编码/类别" [(ngModel)]="searchForm.name"/> |
||||
</div> |
||||
<div class="inputbox"> |
||||
<span> |
||||
完整度: |
||||
</span> |
||||
<select [(ngModel)]="searchForm.integrityNum" [ngClass]="{'gray': searchForm.integrityNum == ''}"> |
||||
<option value='' selected disabled style='display:none;'>请选择</option> |
||||
<option *ngFor="let item of listIntegrityNum" [value]="item.id">{{item.name}}</option> |
||||
</select> |
||||
</div> |
||||
<div class="searchbtn"> |
||||
<button (click)="searchList()" style="width: 100%;" mat-flat-button color="primary"><mat-icon style="width: 20px;height: 20px;font-size: 20px;">search</mat-icon>搜索</button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div style="height: 1px;width: 100%;background-color: #F2F4F6;"></div> |
||||
<div class="contantbox"> |
||||
<div class="title"> |
||||
<span>地址</span> |
||||
<span>完整度</span> |
||||
</div> |
||||
<div class="waterList"> |
||||
<ul *ngIf="addWaterListData && addWaterListData.items" > |
||||
<li [ngClass]="{'selectedLi': key == selectedLiIndex}" *ngFor="let item of addWaterListData.items;let key = index" (click)="clickWaterLi(item,key)"> |
||||
<div class="address" [title]="item.address">{{item.address}}</div> |
||||
<div class="integrity"> |
||||
<span class="integrityNum"> |
||||
{{accMul(item.integrityScore.toFixed(3),100,1)}}% |
||||
</span> |
||||
<div class="integrityColorDiv" [style]="integrity((item.integrityScore.toFixed(2) * 100).toFixed())"> |
||||
</div> |
||||
</div> |
||||
<div class="deletebtn" (click)="deleteWater(item,$event)"><mat-icon>highlight_off</mat-icon></div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="paginator"> |
||||
<mat-paginator [length]="dataLength" [pageSize]="30" (page)="chagePage($event)"></mat-paginator> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="mapbox"> |
||||
|
||||
<div class="mapcheckbox"> |
||||
<mat-checkbox color="primary" *ngFor="let item of checkBoxList">{{item.name}}</mat-checkbox> |
||||
</div> |
||||
<div id="map" class="map" style="overflow: hidden;"> |
||||
<div id="container"></div> |
||||
<div class="gistopbox hidden" [ngClass]="{'show': isGisTopBox}"> |
||||
<div class="inputBox"> |
||||
<span>搜索: </span> |
||||
<input name="position" [(ngModel)]="searchTitle" id="tipinput" class="positionInput" type="text" autocomplete="off"> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<div class="detailsbox" *ngIf="selectedWaterTypeIndex != null"> |
||||
<div class="tabsbox"> |
||||
<div class="tabs"> |
||||
<div class="selectedBtn"> |
||||
<span *ngIf="selectedWaterTypeIndex == 0">消火栓</span> |
||||
<span *ngIf="selectedWaterTypeIndex == 1">消防水池</span> |
||||
<span *ngIf="selectedWaterTypeIndex == 2">天然水源</span> |
||||
</div> |
||||
</div> |
||||
<div class="btnbox"> |
||||
<span class="save" (click)="save()"><mat-icon>save</mat-icon>保存</span> |
||||
<span class="submitAudit"><mat-icon>open_in_browser</mat-icon>提交审核</span> |
||||
</div> |
||||
</div> |
||||
<div class="contant" > |
||||
<p>基本信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='6' rowspan='1'> |
||||
<span> |
||||
<span style="color: red;">*</span> |
||||
名称: |
||||
</span> |
||||
<input [(ngModel)]="waterData.name" type="text" style="width: 88.6%;"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
行政区: |
||||
</span> |
||||
<input [(ngModel)]="waterData.administrativeRegion" type="text"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
水源归属: |
||||
</span> |
||||
<select [(ngModel)]="waterData.governmentLevel"> |
||||
<option value="0">市政</option> |
||||
<option value="1">单位(小区)</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
所属单位(小区): |
||||
</span> |
||||
<input [(ngModel)]="waterData.village" type="text"> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<p>位置信息</p> |
||||
<mat-grid-list cols="6" rowHeight="40px"> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
地址: |
||||
</span> |
||||
<input [(ngModel)]="waterData.address" type="text" style="width:76%;"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
经度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.x" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<span> |
||||
纬度: |
||||
</span> |
||||
<input [(ngModel)]="positionLngLat.y" disabled type="text" style="width: 26%;margin-right: 6%;"> |
||||
<button (click)="setPosition()" style="width:85px;text-align: center;" mat-flat-button color="primary"> |
||||
<mat-icon style="width: 20px;height: 20px;font-size: 20px;">place</mat-icon>位置 |
||||
</button> |
||||
</mat-grid-tile> |
||||
|
||||
</mat-grid-list> |
||||
<p>详细信息</p> |
||||
<!-- 消火栓 --> |
||||
<mat-grid-list cols="6" rowHeight="40px" *ngIf="selectedWaterTypeIndex == 0"> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
可用状态: |
||||
</span> |
||||
<select [(ngModel)]="fireCockData[0].PropertyValue"> |
||||
<option value="0">可用</option> |
||||
<option value="1">维护</option> |
||||
<option value="2">损坏</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
放置形式: |
||||
</span> |
||||
<select [(ngModel)]="fireCockData[1].PropertyValue"> |
||||
<option value="0">地上</option> |
||||
<option value="1">地下</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
管网形式: |
||||
</span> |
||||
<select [(ngModel)]="fireCockData[2].PropertyValue"> |
||||
<option value="0">枝状管网</option> |
||||
<option value="1">环状管网</option> |
||||
<option value="2">混合状管网</option> |
||||
<option value="3">其他</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
管网直径: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<select [(ngModel)]="fireCockData[3].PropertyValue"> |
||||
<option value="0">100</option> |
||||
<option value="1">150</option> |
||||
<option value="2">200</option> |
||||
<option value="3">300</option> |
||||
<option value="4">350</option> |
||||
<option value="5">400</option> |
||||
</select> |
||||
<span class="unit">mm</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
管网压力类型: |
||||
</span> |
||||
<select [(ngModel)]="fireCockData[4].PropertyValue"> |
||||
<option value="0">高压管网</option> |
||||
<option value="1">临时高压管网</option> |
||||
<option value="2">低压管网</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
管网压力范围: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="fireCockData[5].PropertyValue"> |
||||
<span class="unit">Mpa</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
接口形式: |
||||
</span> |
||||
<select [(ngModel)]="fireCockData[6].PropertyValue"> |
||||
<option value="0">内扣式</option> |
||||
<option value="1">卡式</option> |
||||
<option value="2">螺纹式</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
接口口径: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<select [(ngModel)]="fireCockData[7].PropertyValue"> |
||||
<option value="0">65</option> |
||||
<option value="1">80</option> |
||||
<option value="2">100</option> |
||||
<option value="3">150</option> |
||||
</select> |
||||
<span class="unit">mm</span> |
||||
</div> |
||||
|
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
最大流量: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="fireCockData[8].PropertyValue"> |
||||
<span class="unit">L/s</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
供水单位: |
||||
</span> |
||||
<input style="width: 74%;" type="text" [(ngModel)]="fireCockData[9].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
联系方式: |
||||
</span> |
||||
<input style="width: 74%;" type="text" [(ngModel)]="fireCockData[10].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='6' rowspan='2'> |
||||
<span> |
||||
备注: |
||||
</span> |
||||
<textarea [(ngModel)]="fireCockData[11].PropertyValue" style="height: 80%;" name="" id="" cols="30" rows="10"></textarea> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<!-- 消防水池 --> |
||||
<mat-grid-list cols="6" rowHeight="40px" *ngIf="selectedWaterTypeIndex == 1"> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
可用状态: |
||||
</span> |
||||
<select [(ngModel)]="poolData[0].PropertyValue"> |
||||
<option value="0">可用</option> |
||||
<option value="1">维护</option> |
||||
<option value="2">损坏</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
储水量: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="poolData[1].PropertyValue"> |
||||
<span class="unit">m³</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
取水最大流量: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="poolData[2].PropertyValue"> |
||||
<span class="unit">L/s</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
进水流量: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="poolData[3].PropertyValue"> |
||||
<span class="unit">L/s</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
同时取水车辆数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="poolData[4].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
水源标高差: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="poolData[5].PropertyValue"> |
||||
<span class="unit">m</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
补水时间: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="poolData[6].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
管网形式: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="poolData[7].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
供水单位: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="poolData[8].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
联系方式: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="poolData[9].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='6' rowspan='2'> |
||||
<span> |
||||
备注: |
||||
</span> |
||||
<textarea [(ngModel)]="poolData[10].PropertyValue" style="height: 80%;" name="" id="" cols="30" rows="10"></textarea> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
<!-- 天然水源 --> |
||||
<mat-grid-list cols="6" rowHeight="40px" *ngIf="selectedWaterTypeIndex == 2"> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
可用状态: |
||||
</span> |
||||
<select [(ngModel)]="naturalWaterData[0].PropertyValue"> |
||||
<option value="0">可用</option> |
||||
<option value="1">维护</option> |
||||
<option value="2">损坏</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
天然水源类型: |
||||
</span> |
||||
<input type="text" [(ngModel)]="naturalWaterData[1].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
有无消防码头: |
||||
</span> |
||||
<select [(ngModel)]="naturalWaterData[2].PropertyValue"> |
||||
<option value="0">有</option> |
||||
<option value="1">无</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
水质: |
||||
</span> |
||||
<select [(ngModel)]="naturalWaterData[3].PropertyValue"> |
||||
<option value="0">淡水</option> |
||||
<option value="1">海水</option> |
||||
<option value="2">中水</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
同时取水车辆数: |
||||
</span> |
||||
<input type="text" [(ngModel)]="naturalWaterData[4].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='2' rowspan='1'> |
||||
<span> |
||||
水源标高差: |
||||
</span> |
||||
<div class="unitDiv"> |
||||
<input type="text" [(ngModel)]="naturalWaterData[5].PropertyValue"> |
||||
<span class="unit">m</span> |
||||
</div> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
有无枯水期: |
||||
</span> |
||||
<select class="longinput" [(ngModel)]="naturalWaterData[6].PropertyValue"> |
||||
<option value="0">有</option> |
||||
<option value="1">无</option> |
||||
</select> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
枯水期时间: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="naturalWaterData[7].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
供水单位: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="naturalWaterData[8].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='3' rowspan='1'> |
||||
<span> |
||||
联系方式: |
||||
</span> |
||||
<input class="longinput" type="text" [(ngModel)]="naturalWaterData[9].PropertyValue"> |
||||
</mat-grid-tile> |
||||
<mat-grid-tile colspan='6' rowspan='2'> |
||||
<span> |
||||
备注: |
||||
</span> |
||||
<textarea [(ngModel)]="naturalWaterData[10].PropertyValue" style="height: 80%;" name="" id="" cols="30" rows="10"></textarea> |
||||
</mat-grid-tile> |
||||
</mat-grid-list> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
@ -0,0 +1,13 @@
|
||||
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container"> |
||||
|
||||
<mat-form-field> |
||||
<input matInput id="name" name="name" type='text' |
||||
required ngModel #name="ngModel" placeholder="请输入下属机关名称"> |
||||
</mat-form-field> |
||||
|
||||
<div class="btn"> |
||||
<button type="submit" class="savebtn" mat-raised-button color="primary" [disabled]='form.invalid'>确定</button> |
||||
<button type="button" mat-button (click)="onNoClick()" mat-raised-button>取消</button> |
||||
</div> |
||||
|
||||
</form> |
@ -0,0 +1,13 @@
|
||||
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm" class="example-container"> |
||||
|
||||
<mat-form-field> |
||||
<input matInput id="name" name="name" type='text' |
||||
required [(ngModel)]="officeName" placeholder="请输入下属机关名称"> |
||||
</mat-form-field> |
||||
|
||||
<div class="btn"> |
||||
<button type="submit" class="savebtn" mat-raised-button color="primary" [disabled]='form.invalid'>确定</button> |
||||
<button type="button" mat-button (click)="onNoClick()" mat-raised-button>取消</button> |
||||
</div> |
||||
|
||||
</form> |
After Width: | Height: | Size: 604 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 601 B |
After Width: | Height: | Size: 507 B |
Loading…
Reference in new issue