Browse Source

[完善]完善演练功能

tianjin
邵佳豪 2 years ago
parent
commit
d72f15ab8f
  1. 2
      src/app/key-unit/key-unit-management/key-unit-management.component.ts
  2. 47
      src/app/key-unit/key-unit-management/upload-drill/upload-drill.component.html
  3. 30
      src/app/key-unit/key-unit-management/upload-drill/upload-drill.component.ts
  4. 62
      src/app/plan-management/drill-record/drill-record.component.html
  5. 135
      src/app/plan-management/drill-record/drill-record.component.scss
  6. 171
      src/app/plan-management/drill-record/drill-record.component.ts
  7. 236
      src/app/plan-management/plan-management.module.ts
  8. 242
      src/app/ui/navmenus/navmenus.component.ts
  9. 1
      src/index.html
  10. 4
      src/styles.scss

2
src/app/key-unit/key-unit-management/key-unit-management.component.ts

@ -891,7 +891,7 @@ export class KeyUnitManagementComponent implements OnInit {
console.log(element); console.log(element);
const dialogRef = this.dialog.open(UploadDrillComponent, { const dialogRef = this.dialog.open(UploadDrillComponent, {
width: "700px", width: "700px",
data: { unitInfo: element }, data: { unitInfo: element, isEditMode: true },
}); });
dialogRef.afterClosed().subscribe((result) => { dialogRef.afterClosed().subscribe((result) => {

47
src/app/key-unit/key-unit-management/upload-drill/upload-drill.component.html

@ -1,4 +1,4 @@
<h2 mat-dialog-title>上传演练记录</h2> <h2 mat-dialog-title>演练记录</h2>
<div class="box"> <div class="box">
<div class="contentItem"> <div class="contentItem">
<div class="title"> <div class="title">
@ -30,21 +30,24 @@
<div class="content peoplecontent"> <div class="content peoplecontent">
<div> <div>
<span class="name">带队人员:</span> <span class="name">带队人员:</span>
<input name="teamLeader" [(ngModel)]="teamLeader" nz-input placeholder="带队人员" /> <input [disabled]="!isEditMode" name="teamLeader" [(ngModel)]="teamLeader" nz-input
placeholder="带队人员" />
</div> </div>
<div> <div>
<span class="name">熟悉时间:</span> <span class="name">熟悉时间:</span>
<nz-range-picker [nzShowTime]="{ nzFormat: 'HH:mm' }" nzFormat="yyyy-MM-dd HH:mm" <nz-range-picker [disabled]="!isEditMode" [nzShowTime]="{ nzFormat: 'HH:mm' }"
[nzPlaceHolder]="['开始时间', '结束时间']" name="time" [(ngModel)]="time"></nz-range-picker> nzFormat="yyyy-MM-dd HH:mm" [nzPlaceHolder]="['开始时间', '结束时间']" name="time"
[(ngModel)]="time"></nz-range-picker>
</div> </div>
<div> <div>
<span class="name">调研照片:</span> <span class="name">调研照片:</span>
<div class="uploadbox"> <div class="uploadbox">
<input type="file" (change)="upload($event,'调研')"> <input *ngIf="isEditMode" type="file" (change)="upload($event,'调研')">
<button nz-button nzType="default">上传照片</button> <button *ngIf="isEditMode" nz-button nzType="default">上传照片</button>
<ul class="imgbox"> <ul class="imgbox">
<li *ngFor="let item of surveyPhoto;let key = index"><img [src]="item" alt=""> <li *ngFor="let item of surveyPhoto;let key = index"><img [src]="item" alt=""
<span class="close material-icons" (click)="deleteImg(surveyPhoto,key)"> (click)="viewImg(item)">
<span *ngIf="isEditMode" class="close material-icons" (click)="deleteImg(surveyPhoto,key)">
cancel cancel
</span> </span>
</li> </li>
@ -61,11 +64,12 @@
<div> <div>
<span class="name">水源照片:</span> <span class="name">水源照片:</span>
<div class="uploadbox"> <div class="uploadbox">
<input type="file" (change)="upload($event,'水源')"> <input *ngIf="isEditMode" type="file" (change)="upload($event,'水源')">
<button nz-button nzType="default">上传照片</button> <button *ngIf="isEditMode" nz-button nzType="default">上传照片</button>
<ul class="imgbox"> <ul class="imgbox">
<li *ngFor="let item of waterPhoto;let key = index"><img [src]="item" alt=""> <li *ngFor="let item of waterPhoto;let key = index"><img [src]="item" alt=""
<span class="close material-icons" (click)="deleteImg(waterPhoto,key)"> (click)="viewImg(item)">
<span *ngIf="isEditMode" class="close material-icons" (click)="deleteImg(waterPhoto,key)">
cancel cancel
</span> </span>
</li> </li>
@ -75,11 +79,12 @@
<div> <div>
<span class="name">疏散通道:</span> <span class="name">疏散通道:</span>
<div class="uploadbox"> <div class="uploadbox">
<input type="file" (change)="upload($event,'疏散通道')"> <input *ngIf="isEditMode" type="file" (change)="upload($event,'疏散通道')">
<button nz-button nzType="default">上传照片</button> <button *ngIf="isEditMode" nz-button nzType="default">上传照片</button>
<ul class="imgbox"> <ul class="imgbox">
<li *ngFor="let item of routePhoto;let key = index"><img [src]="item" alt=""> <li *ngFor="let item of routePhoto;let key = index"><img [src]="item" alt=""
<span class="close material-icons" (click)="deleteImg(routePhoto,key)"> (click)="viewImg(item)">
<span *ngIf="isEditMode" class="close material-icons" (click)="deleteImg(routePhoto,key)">
cancel cancel
</span> </span>
</li> </li>
@ -89,11 +94,13 @@
<div> <div>
<span class="name">消控室:</span> <span class="name">消控室:</span>
<div class="uploadbox"> <div class="uploadbox">
<input type="file" (change)="upload($event,'消控室')"> <input *ngIf="isEditMode" type="file" (change)="upload($event,'消控室')">
<button nz-button nzType="default">上传照片</button> <button *ngIf="isEditMode" nz-button nzType="default">上传照片</button>
<ul class="imgbox"> <ul class="imgbox">
<li *ngFor="let item of fireControlPhoto;let key = index"><img [src]="item" alt=""> <li *ngFor="let item of fireControlPhoto;let key = index"><img [src]="item" alt=""
<span class="close material-icons" (click)="deleteImg(fireControlPhoto,key)"> (click)="viewImg(item)">
<span *ngIf="isEditMode" class="close material-icons"
(click)="deleteImg(fireControlPhoto,key)">
cancel cancel
</span> </span>
</li> </li>

30
src/app/key-unit/key-unit-management/upload-drill/upload-drill.component.ts

@ -4,6 +4,7 @@ import { MatDialogRef, MAT_DIALOG_DATA } from "@angular/material/dialog";
import { ObjectsService } from "@src/app/services/objects.service"; import { ObjectsService } from "@src/app/services/objects.service";
import { DatePipe } from "@angular/common"; import { DatePipe } from "@angular/common";
import { MatSnackBar } from "@angular/material/snack-bar"; import { MatSnackBar } from "@angular/material/snack-bar";
import Viewer from "viewerjs";
@Component({ @Component({
selector: "app-upload-drill", selector: "app-upload-drill",
templateUrl: "./upload-drill.component.html", templateUrl: "./upload-drill.component.html",
@ -20,8 +21,11 @@ export class UploadDrillComponent implements OnInit {
public snackBar: MatSnackBar public snackBar: MatSnackBar
) {} ) {}
isEditMode = true;
ngOnInit(): void { ngOnInit(): void {
console.log(this.data); console.log(this.data);
this.isEditMode = this.data.isEditMode;
this.getData(); this.getData();
} }
@ -128,6 +132,11 @@ export class UploadDrillComponent implements OnInit {
drillId; drillId;
isLoadingSave = false; isLoadingSave = false;
save() { save() {
if (!this.isEditMode) {
this.dialogRef.close();
return;
}
if (!this.teamLeader || !this.time) { if (!this.teamLeader || !this.time) {
this.snackBar.open("请输入带队人员和熟悉时间", "确定", { this.snackBar.open("请输入带队人员和熟悉时间", "确定", {
verticalPosition: "top", verticalPosition: "top",
@ -146,7 +155,6 @@ export class UploadDrillComponent implements OnInit {
escapeRoute: JSON.stringify(this.routePhoto), escapeRoute: JSON.stringify(this.routePhoto),
fireControlRoom: JSON.stringify(this.fireControlPhoto), fireControlRoom: JSON.stringify(this.fireControlPhoto),
}; };
console.log(body);
if (this.isHttpPost) { if (this.isHttpPost) {
this.http.post("/api/DrillRecords", body).subscribe((data: any) => { this.http.post("/api/DrillRecords", body).subscribe((data: any) => {
this.drillId = data.id; this.drillId = data.id;
@ -172,4 +180,24 @@ export class UploadDrillComponent implements OnInit {
}); });
} }
} }
//查看图片
viewImg(url) {
let dom = document.getElementById(`viewerjs`);
let pObjs = dom.childNodes;
let node = document.createElement("img");
node.style.display = "none";
node.src = url;
node.id = "img";
dom.appendChild(node);
setTimeout(() => {
let viewer = new Viewer(document.getElementById(`viewerjs`), {
hidden: () => {
dom.removeChild(pObjs[0]);
viewer.destroy();
},
});
node.click();
}, 0);
}
} }

62
src/app/plan-management/drill-record/drill-record.component.html

@ -1,63 +1,59 @@
<!-- <p>演练记录</p> --> <!-- <p>演练记录</p> -->
<div class="box"> <div class="box">
<div class="header"> <div class="header">
<form (ngSubmit)="onSubmit(form.value)" #form="ngForm"> <form class="queryBox" (ngSubmit)="onSubmit()">
<div class="queryBox">
<div class="queryField"> <div class="queryField">
<label style="margin-right: 10px;">演练对象:</label> <span style="width: 108px;">单位名称:</span>
<mat-form-field class="example-full-width"> <input name="name" nz-input placeholder="请输入单位名称" [(ngModel)]="name" />
<input matInput placeholder="请输入演练对象" name="companyName" [(ngModel)]="name" autocomplete="off">
</mat-form-field>
</div> </div>
<div class="queryField"> <div class="queryField" style="margin-right: 35px;">
<label style="margin-right: 10px;">演练时间:</label> <span>组织机构:</span>
<mat-form-field class="example-full-width"> <nz-tree-select [nzDropdownClassName]="'maxHeightTreeSelect'" style="width: 250px"
<input matInput placeholder="请选择演练时间" name="companyName" [(ngModel)]="time" autocomplete="off"> [nzExpandedKeys]="expandKeys" [nzNodes]="nodes" nzShowSearch nzPlaceHolder="请选择组织机构" name="orId"
</mat-form-field> [(ngModel)]="orId">
</nz-tree-select>
</div> </div>
<div class="queryField"> <div class="queryField">
<button mat-raised-button color="primary">查询</button> <span>熟悉时间:</span>
<button mat-raised-button style="margin-left: 25px;" type="button" (click)="reset()">重置</button> <nz-range-picker name="time" [(ngModel)]="time"></nz-range-picker>
</div> </div>
<div class="queryField btnbox">
<button nz-button nzType="primary">查询</button>
<button nz-button type="button" nzType="default" (click)="reset()">重置</button>
</div> </div>
</form> </form>
</div> </div>
<div class="body">
<div class="tablebox"> <div class="tablebox">
<table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8"> <table mat-table [dataSource]="tabledataSource" class="mat-elevation-z8">
<ng-container matColumnDef="name"> <ng-container matColumnDef="name">
<th mat-header-cell *matHeaderCellDef>演练对象</th> <th mat-header-cell *matHeaderCellDef>演练对象</th>
<td mat-cell *matCellDef="let element">{{element.name}}</td> <td mat-cell *matCellDef="let element">{{element.company.name}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="time1"> <ng-container matColumnDef="or">
<th mat-header-cell *matHeaderCellDef>演练时间</th> <th mat-header-cell *matHeaderCellDef>组织机构</th>
<td mat-cell *matCellDef="let element">{{element.time1}}</td> <td mat-cell *matCellDef="let element">{{element.company.organizationName}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="time2"> <ng-container matColumnDef="people">
<th mat-header-cell *matHeaderCellDef>演练时段</th> <th mat-header-cell *matHeaderCellDef>带队人员</th>
<td mat-cell *matCellDef="let element">{{element.time2}}</td> <td mat-cell *matCellDef="let element">{{element.teamLeader}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="type"> <ng-container matColumnDef="time">
<th mat-header-cell *matHeaderCellDef>演练形式</th> <th mat-header-cell *matHeaderCellDef>演练时间</th>
<td mat-cell *matCellDef="let element">{{element.type}}</td> <td mat-cell *matCellDef="let element">{{element.startTime | date:'yyyy-MM-dd HH:mm'}} -
{{element.endTime | date:'yyyy-MM-dd HH:mm'}}</td>
</ng-container> </ng-container>
<ng-container matColumnDef="operate"> <ng-container matColumnDef="operate">
<th mat-header-cell *matHeaderCellDef>操作</th> <th mat-header-cell *matHeaderCellDef style="width: 200px;">操作</th>
<td mat-cell *matCellDef="let element" class="operate"> <td mat-cell *matCellDef="let element" class="operate">
<span>查看</span> <span (click)="look(element)">查看</span>
<span>详情</span> <!-- <span (click)="delete(element)">删除</span> -->
</td> </td>
</ng-container> </ng-container>
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr> <tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
<tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr> <tr mat-row *matRowDef="let row; columns: displayedColumns;"></tr>
</table> </table>
<mat-paginator [length]="length" [pageSize]="pageSize" [pageSizeOptions]="pageSizeOptions" <mat-paginator [length]="length" [pageSize]="pageSize"
(page)="chagePage($event)"> (page)="chagePage($event)">
</mat-paginator> </mat-paginator>
</div>
</div> </div>
</div> </div>

135
src/app/plan-management/drill-record/drill-record.component.scss

@ -6,153 +6,41 @@
.header { .header {
width: 100%; width: 100%;
padding: 12px 10px;
box-sizing: border-box; box-sizing: border-box;
padding: 20px 30px 8px 30px;
.queryBox { .queryBox {
box-sizing: border-box;
padding: 5px 0 0 5px;
// margin-left: 50px;
display: flex; display: flex;
flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center; align-items: center;
// justify-content:center;
.queryField { .queryField {
margin: 0 10px; display: flex;
align-items: center;
input { margin-right: 20px;
width: 180px;
height: 22px;
line-height: 22px;
border-radius: 3px;
}
@media screen and (max-device-width:1400px)and (min-device-width:1200px) {
//margin: 3px 10px;
mat-form-field {
width: 180px;
}
}
@media screen and (max-device-width:1200px) {
//margin: 3px 0 3px 10px;
mat-form-field {
width: 110px;
}
}
}
}
//queryBox span {
.butclass { display: inline-block;
button {
width: 80px; width: 80px;
height: 36px;
font-size: 16px;
}
}
.ordiv {
position: relative;
.organizationbox {
width: 450px;
height: 200px;
background: white;
position: absolute;
top: 48px;
left: 77px;
z-index: 999;
border: 1px solid grey;
overflow-y: auto;
li {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
mat-tree-node {
cursor: pointer;
white-space: pre;
} }
mat-tree-node:hover {
background: rgba(225, 225, 225, 0.8);
} }
.btnbox{
.closediv { button{
z-index: 100; margin-right: 12px;
position: absolute;
right: 0;
top: 0;
width: 30px;
height: 30px;
cursor: pointer;
line-height: 30px;
text-align: center;
} }
.closediv:hover {
background: rgba(225, 225, 225, 0.8);
} }
} }
}
} }
.body { .tablebox {
.buttonbox {
padding-left: 50px;
button {
margin: 0 10px
}
}
.tablebox {
.add {
cursor: auto;
text-decoration: none;
display: block;
width: 40px;
height: 20px;
background: #1AE2AC;
font-size: 12px;
line-height: 20px;
color: #FFFFFF;
margin-left: 50px;
}
.weihu {
cursor: auto;
text-decoration: none;
display: block;
width: 64px;
height: 20px;
background: #FFC94B;
font-size: 12px;
color: #FFFFFF;
line-height: 20px;
margin-left: 40px;
}
table { table {
width: 100%; width: 100%;
// margin-left: 2%;
margin-top: 15px; margin-top: 15px;
} }
mat-paginator { mat-paginator {
width: 100%; width: 100%;
// margin-left: 2%;
// margin-top: 30px;
}
} }
} }
@ -164,8 +52,7 @@
.operate { .operate {
span { span {
color: blue; color: #40a9ff;
margin: 0 3px;
cursor: pointer; cursor: pointer;
} }
} }

171
src/app/plan-management/drill-record/drill-record.component.ts

@ -1,114 +1,141 @@
import { Component, OnInit, ViewChild, Inject } from "@angular/core"; import { Component, OnInit, ViewChild, Inject } from "@angular/core";
import { HttpClient } from "@angular/common/http"; import { HttpClient } from "@angular/common/http";
import {
MatTreeFlatDataSource,
MatTreeFlattener,
} from "@angular/material/tree";
import { MatPaginator } from "@angular/material/paginator"; import { MatPaginator } from "@angular/material/paginator";
import { FlatTreeControl } from "@angular/cdk/tree";
import { FormControl } from "@angular/forms";
import { Router, ActivatedRoute } from "@angular/router"; import { Router, ActivatedRoute } from "@angular/router";
import { PageEvent } from "@angular/material/paginator"; import { PageEvent } from "@angular/material/paginator";
import { MatDialog } from "@angular/material/dialog"; import { MatDialog } from "@angular/material/dialog";
import { MatSnackBar } from "@angular/material/snack-bar"; import { MatSnackBar } from "@angular/material/snack-bar";
import { TreeService } from "../../http-interceptors/tree.service"; import { TreeService } from "../../http-interceptors/tree.service";
import { DatePipe } from "@angular/common";
import { UploadDrillComponent } from "@src/app/key-unit/key-unit-management/upload-drill/upload-drill.component";
@Component({ @Component({
selector: "app-drill-record", selector: "app-drill-record",
templateUrl: "./drill-record.component.html", templateUrl: "./drill-record.component.html",
styleUrls: ["./drill-record.component.scss"], styleUrls: ["./drill-record.component.scss"],
providers: [DatePipe],
}) })
export class DrillRecordComponent implements OnInit { export class DrillRecordComponent implements OnInit {
constructor( constructor(
private http: HttpClient, private http: HttpClient,
private router: Router,
private route: ActivatedRoute,
private tree: TreeService,
public dialog: MatDialog, public dialog: MatDialog,
public snackBar: MatSnackBar public snackBar: MatSnackBar,
private datePipe: DatePipe
) {} ) {}
private _transformer = (node, level: number) => {
//初始化tree
return {
expandable: !!node.children && node.children.length > 0,
name: node.name,
level: level,
id: node.id,
parentId: node.parentId,
children: node.children,
};
};
treeControl = new FlatTreeControl<any>(
(node) => node.level,
(node) => node.expandable
);
treeFlattener = new MatTreeFlattener(
this._transformer,
(node) => node.level,
(node) => node.expandable,
(node) => node.children
);
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);
myControl = new FormControl();
hasChild = (_: number, node: any) => node.expandable;
//分页 //分页
@ViewChild(MatPaginator, { static: true }) @ViewChild(MatPaginator, { static: true })
pageEvent: PageEvent; pageEvent: PageEvent;
paginator: MatPaginator; paginator: MatPaginator;
length: any = 4; //共多少条数据 displayedColumns: string[] = ["name", "or", "people", "time", "operate"];
pageSize: any = 10; //每页条数
pageSizeOptions: number[] = [10]; //设置每页条数
PageNumber: any = 1; //第几页
displayedColumns: string[] = ["name", "time1", "time2", "type", "operate"];
allorganizations: any; //所有组织机构
allunittype: any; //所有单位类型
tabledataSource: any; //表格数据 tabledataSource: any; //表格数据
IsNewData = ""; //维护更新活新增
preparelevels: any;
ngOnInit(): void { ngOnInit(): void {
this.tabledataSource = [ this.getOrganizations();
{ }
name: "中保大厦有限公司",
time1: "2023-5-18 07:19", //获得所有组织机构
time2: "2023.5.18-2023.5.19", allorganizations: any; //所有组织机构
type: "二维预案演练", getOrganizations() {
}, this.http.get("/api/Organizations").subscribe((data: any) => {
{ this.allorganizations = data;
name: "上海通高制造有限公司", this.getpresentOrganization();
time1: "2023-5-19 09:09", });
time2: "2023.5.19-2023.5.19", }
type: "二维预案演练",
}, //得到当前单位所在组织机构的tree型数据
{ expandKeys = [];
name: "怡莲超市", nodes = [];
time1: "2023-5-20 08:23", organizationId;
time2: "2023.5.20-2023.5.21", getpresentOrganization() {
type: "二维预案演练", this.allorganizations.forEach((item) => {
}, item.key = item.id;
{ item.title = item.name;
name: "永兴商务广场", item.children = [];
time1: "2023-5-25 12:50", this.allorganizations.forEach((element) => {
time2: "2023.5.25-2023.5.26", if (element.parentId == item.id) {
type: "二维预案演练", item.children.push(element);
}, }
]; if (item.children.length === 0) {
item.isLeaf = true;
} else {
item.isLeaf = false;
}
});
});
this.http.get("/api/Account/Profiles").subscribe((data: any) => {
this.allorganizations.forEach((item) => {
if (item.name == data.organizationName) {
this.expandKeys = [item.id];
this.organizationId = item.id;
this.orId = item.id;
this.nodes = [...[item]];
this.getTabledataSource();
}
});
});
}
length: any; //共多少条数据
pageSize: any = 10; //每页条数
PageNumber: any = 1; //第几页
getTabledataSource() {
let params = {
OrganizationId: this.orId,
CompanyName: this.name || "",
StartTime: this.time
? this.datePipe.transform(this.time[0], "yyyy-MM-ddT00:00:00")
: "2020-01-01T00:00:00",
EndTime: this.time
? this.datePipe.transform(this.time[1], "yyyy-MM-ddT23:59:59")
: "2030-01-01T00:00:00",
PageNumber: this.PageNumber,
PageSize: this.pageSize,
};
this.http
.get("/api/DrillRecords", { params: params })
.subscribe((data: any) => {
this.tabledataSource = data.items;
this.length = data.totalCount;
});
} }
//分页事件 //分页事件
chagePage(e) { chagePage(e) {
this.PageNumber = e.pageIndex + 1; this.PageNumber = e.pageIndex + 1;
this.getTabledataSource();
} }
name; name;
orId;
time; time;
//查询 //查询
onSubmit(e) { onSubmit() {
this.PageNumber = 1; this.PageNumber = 1;
this.pageEvent.pageIndex = 0; this.pageEvent.pageIndex = 0;
this.getTabledataSource();
} }
//重置 //重置
reset() {} reset() {
this.name = "";
this.orId = this.organizationId;
this.time = null;
this.onSubmit();
}
look(element) {
this.dialog.open(UploadDrillComponent, {
width: "700px",
data: { unitInfo: element.company, isEditMode: false },
});
}
delete(element) {
if (confirm("确认删除此记录吗")) {
this.http
.delete(`/api/DrillRecords/${element.id}`)
.subscribe((data: any) => {
alert('删除成功')
this.getTabledataSource();
});
}
}
} }

236
src/app/plan-management/plan-management.module.ts

@ -1,91 +1,145 @@
import { NgModule } from '@angular/core'; import { NgModule } from "@angular/core";
import { CommonModule } from '@angular/common'; import { CommonModule } from "@angular/common";
import { PlanManagementRoutingModule } from './plan-management-routing.module'; import { PlanManagementRoutingModule } from "./plan-management-routing.module";
import { ReactiveFormsModule, FormsModule } from '@angular/forms'; import { ReactiveFormsModule, FormsModule } from "@angular/forms";
import { A11yModule } from '@angular/cdk/a11y'; import { A11yModule } from "@angular/cdk/a11y";
import { DragDropModule } from '@angular/cdk/drag-drop'; import { DragDropModule } from "@angular/cdk/drag-drop";
import { PortalModule } from '@angular/cdk/portal'; import { PortalModule } from "@angular/cdk/portal";
import { ScrollingModule } from '@angular/cdk/scrolling'; import { ScrollingModule } from "@angular/cdk/scrolling";
import { CdkStepperModule } from '@angular/cdk/stepper'; import { CdkStepperModule } from "@angular/cdk/stepper";
import { CdkTableModule } from '@angular/cdk/table'; import { CdkTableModule } from "@angular/cdk/table";
import { CdkTreeModule } from '@angular/cdk/tree'; import { CdkTreeModule } from "@angular/cdk/tree";
import { MatAutocompleteModule } from '@angular/material/autocomplete'; import { MatAutocompleteModule } from "@angular/material/autocomplete";
import { MatBadgeModule } from '@angular/material/badge'; import { MatBadgeModule } from "@angular/material/badge";
import { MatBottomSheetModule } from '@angular/material/bottom-sheet'; import { MatBottomSheetModule } from "@angular/material/bottom-sheet";
import { MatButtonModule } from '@angular/material/button'; import { MatButtonModule } from "@angular/material/button";
import { MatButtonToggleModule } from '@angular/material/button-toggle'; import { MatButtonToggleModule } from "@angular/material/button-toggle";
import { MatCardModule } from '@angular/material/card'; import { MatCardModule } from "@angular/material/card";
import { MatCheckboxModule } from '@angular/material/checkbox'; import { MatCheckboxModule } from "@angular/material/checkbox";
import { MatChipsModule } from '@angular/material/chips'; import { MatChipsModule } from "@angular/material/chips";
import { MatStepperModule } from '@angular/material/stepper'; import { MatStepperModule } from "@angular/material/stepper";
import { MatDatepickerModule } from '@angular/material/datepicker'; import { MatDatepickerModule } from "@angular/material/datepicker";
import { MatDialogModule } from '@angular/material/dialog'; import { MatDialogModule } from "@angular/material/dialog";
import { MatDividerModule } from '@angular/material/divider'; import { MatDividerModule } from "@angular/material/divider";
import { MatExpansionModule } from '@angular/material/expansion'; import { MatExpansionModule } from "@angular/material/expansion";
import { MatGridListModule } from '@angular/material/grid-list'; import { MatGridListModule } from "@angular/material/grid-list";
import { MatIconModule } from '@angular/material/icon'; import { MatIconModule } from "@angular/material/icon";
import { MatInputModule } from '@angular/material/input'; import { MatInputModule } from "@angular/material/input";
import { MatListModule } from '@angular/material/list'; import { MatListModule } from "@angular/material/list";
import { MatMenuModule } from '@angular/material/menu'; import { MatMenuModule } from "@angular/material/menu";
import { MatNativeDateModule, MatRippleModule } from '@angular/material/core'; import { MatNativeDateModule, MatRippleModule } from "@angular/material/core";
import { MatPaginatorModule } from '@angular/material/paginator'; import { MatPaginatorModule } from "@angular/material/paginator";
import { MatProgressBarModule } from '@angular/material/progress-bar'; import { MatProgressBarModule } from "@angular/material/progress-bar";
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner'; import { MatProgressSpinnerModule } from "@angular/material/progress-spinner";
import { MatRadioModule } from '@angular/material/radio'; import { MatRadioModule } from "@angular/material/radio";
import { MatSelectModule } from '@angular/material/select'; import { MatSelectModule } from "@angular/material/select";
import { MatSidenavModule } from '@angular/material/sidenav'; import { MatSidenavModule } from "@angular/material/sidenav";
import { MatSliderModule } from '@angular/material/slider'; import { MatSliderModule } from "@angular/material/slider";
import { MatSlideToggleModule } from '@angular/material/slide-toggle'; import { MatSlideToggleModule } from "@angular/material/slide-toggle";
import { MatSnackBarModule } from '@angular/material/snack-bar'; import { MatSnackBarModule } from "@angular/material/snack-bar";
import { MatSortModule } from '@angular/material/sort'; import { MatSortModule } from "@angular/material/sort";
import { MatTableModule } from '@angular/material/table'; import { MatTableModule } from "@angular/material/table";
import { MatTabsModule } from '@angular/material/tabs'; import { MatTabsModule } from "@angular/material/tabs";
import { MatToolbarModule } from '@angular/material/toolbar'; import { MatToolbarModule } from "@angular/material/toolbar";
import { MatTooltipModule } from '@angular/material/tooltip'; import { MatTooltipModule } from "@angular/material/tooltip";
import { MatTreeModule } from '@angular/material/tree'; import { MatTreeModule } from "@angular/material/tree";
import { EntryPlanComponent } from './entry-plan/entry-plan.component';
import { PassPlanComponent, UnitInfo } from './pass-plan/pass-plan.component';
import { OpenPlanComponent } from './open-plan/open-plan.component';
import { EntryPlanLookComponent, AddPlanone, DownloadFile, AuditResult, ChangeName, ImgDetails } from './entry-plan-look/entry-plan-look.component';
import { PlanType, AuditSatus, PlanLevel, state } from '../pipes/boolean.pipe';
import { WebLookComponent } from './web-look/web-look.component';
import { OnetwoEntryPlanComponent } from './onetwo-entry-plan/onetwo-entry-plan.component';
import { newunitComponent } from './onetwo-entry-plan/onetwo-entry-plan.component';
import { MeetPlanComponent } from './meet-plan/meet-plan.component';
import { newunitMeet } from './meet-plan/meet-plan.component';
import { TypePlanComponent } from './type-plan/type-plan.component';
import { newunitType } from './type-plan/type-plan.component';
import { PsViewer } from './entry-plan-look/entry-plan-look.component'
import { onetwoAuditResult } from './onetwo-entry-plan/onetwo-entry-plan.component';
import { meetAuditResult } from './meet-plan/meet-plan.component';
import { typeAuditResult } from './type-plan/type-plan.component';
import { MaintainUpComponent } from './maintain-up/maintain-up.component'
import { GkPsViewer } from './pass-plan/pass-plan.component'
import { GkhtmlPsViewer } from './open-plan/open-plan.component';
import { ReinforcePlanComponent } from './reinforce-plan/reinforce-plan.component';
import { CreatePlanOnlineFiveComponent, OpenPlanToolDialog } from './create-plan-online-five/create-plan-online-five.component';
import { CreatePlanOnlineThreeComponent } from './create-plan-online-three/create-plan-online-three.component'
import { UiModule } from '../ui/ui.module';
import { TreeDiagramModule } from '../ui/ng-tree-diagram/src/ng-tree-diagram';
import { KeyUnitModule } from '../key-unit/key-unit.module';
import { yinYong } from './create-plan-online-five/create-plan-online-five.component'
import { newTitle } from './create-plan-online-five/create-plan-online-five.component'
import { disaster } from './create-plan-online-five/create-plan-online-five.component'
import { updataHl } from './create-plan-online-five/create-plan-online-five.component'
import {ChangeUrl} from './entry-plan-look/entry-plan-look.component'
import {adddwsurveys} from './create-plan-online-five/create-plan-online-five.component'
import { editUpload } from './entry-plan-look/entry-plan-look.component'
import { wenbenUpload } from './entry-plan-look/entry-plan-look.component';
import { EditPlanCategoryComponent } from './entry-plan-look/edit-plan-category/edit-plan-category.component';
import { SixFamiliarityComponent } from './six-familiarity/six-familiarity.component';
import { DrillRecordComponent } from './drill-record/drill-record.component'
import { EntryPlanComponent } from "./entry-plan/entry-plan.component";
import { PassPlanComponent, UnitInfo } from "./pass-plan/pass-plan.component";
import { OpenPlanComponent } from "./open-plan/open-plan.component";
import {
EntryPlanLookComponent,
AddPlanone,
DownloadFile,
AuditResult,
ChangeName,
ImgDetails,
} from "./entry-plan-look/entry-plan-look.component";
import { PlanType, AuditSatus, PlanLevel, state } from "../pipes/boolean.pipe";
import { WebLookComponent } from "./web-look/web-look.component";
import { OnetwoEntryPlanComponent } from "./onetwo-entry-plan/onetwo-entry-plan.component";
import { newunitComponent } from "./onetwo-entry-plan/onetwo-entry-plan.component";
import { MeetPlanComponent } from "./meet-plan/meet-plan.component";
import { newunitMeet } from "./meet-plan/meet-plan.component";
import { TypePlanComponent } from "./type-plan/type-plan.component";
import { newunitType } from "./type-plan/type-plan.component";
import { PsViewer } from "./entry-plan-look/entry-plan-look.component";
import { onetwoAuditResult } from "./onetwo-entry-plan/onetwo-entry-plan.component";
import { meetAuditResult } from "./meet-plan/meet-plan.component";
import { typeAuditResult } from "./type-plan/type-plan.component";
import { MaintainUpComponent } from "./maintain-up/maintain-up.component";
import { GkPsViewer } from "./pass-plan/pass-plan.component";
import { GkhtmlPsViewer } from "./open-plan/open-plan.component";
import { ReinforcePlanComponent } from "./reinforce-plan/reinforce-plan.component";
import {
CreatePlanOnlineFiveComponent,
OpenPlanToolDialog,
} from "./create-plan-online-five/create-plan-online-five.component";
import { CreatePlanOnlineThreeComponent } from "./create-plan-online-three/create-plan-online-three.component";
import { UiModule } from "../ui/ui.module";
import { TreeDiagramModule } from "../ui/ng-tree-diagram/src/ng-tree-diagram";
import { KeyUnitModule } from "../key-unit/key-unit.module";
import { yinYong } from "./create-plan-online-five/create-plan-online-five.component";
import { newTitle } from "./create-plan-online-five/create-plan-online-five.component";
import { disaster } from "./create-plan-online-five/create-plan-online-five.component";
import { updataHl } from "./create-plan-online-five/create-plan-online-five.component";
import { ChangeUrl } from "./entry-plan-look/entry-plan-look.component";
import { adddwsurveys } from "./create-plan-online-five/create-plan-online-five.component";
import { editUpload } from "./entry-plan-look/entry-plan-look.component";
import { wenbenUpload } from "./entry-plan-look/entry-plan-look.component";
import { EditPlanCategoryComponent } from "./entry-plan-look/edit-plan-category/edit-plan-category.component";
import { SixFamiliarityComponent } from "./six-familiarity/six-familiarity.component";
import { DrillRecordComponent } from "./drill-record/drill-record.component";
import { NzDatePickerModule } from "ng-zorro-antd/date-picker";
import { NzInputModule } from "ng-zorro-antd/input";
import { NzButtonModule } from "ng-zorro-antd/button";
import { NzTreeSelectModule } from "ng-zorro-antd/tree-select";
@NgModule({ @NgModule({
declarations: [EntryPlanComponent, PassPlanComponent, OpenPlanComponent, EntryPlanLookComponent, AddPlanone, PlanType, AuditSatus, PlanLevel, DownloadFile, AuditResult, ChangeName, declarations: [
WebLookComponent, OnetwoEntryPlanComponent, newunitComponent, MeetPlanComponent, newunitMeet, TypePlanComponent, newunitType, PsViewer, onetwoAuditResult, meetAuditResult, EntryPlanComponent,
typeAuditResult, MaintainUpComponent, GkPsViewer, GkhtmlPsViewer, UnitInfo, ReinforcePlanComponent, state, ImgDetails, CreatePlanOnlineFiveComponent, CreatePlanOnlineThreeComponent, PassPlanComponent,
OpenPlanToolDialog,yinYong,newTitle,disaster,updataHl,ChangeUrl,adddwsurveys,editUpload,wenbenUpload, EditPlanCategoryComponent, SixFamiliarityComponent, DrillRecordComponent], OpenPlanComponent,
EntryPlanLookComponent,
AddPlanone,
PlanType,
AuditSatus,
PlanLevel,
DownloadFile,
AuditResult,
ChangeName,
WebLookComponent,
OnetwoEntryPlanComponent,
newunitComponent,
MeetPlanComponent,
newunitMeet,
TypePlanComponent,
newunitType,
PsViewer,
onetwoAuditResult,
meetAuditResult,
typeAuditResult,
MaintainUpComponent,
GkPsViewer,
GkhtmlPsViewer,
UnitInfo,
ReinforcePlanComponent,
state,
ImgDetails,
CreatePlanOnlineFiveComponent,
CreatePlanOnlineThreeComponent,
OpenPlanToolDialog,
yinYong,
newTitle,
disaster,
updataHl,
ChangeUrl,
adddwsurveys,
editUpload,
wenbenUpload,
EditPlanCategoryComponent,
SixFamiliarityComponent,
DrillRecordComponent,
],
imports: [ imports: [
CommonModule, CommonModule,
PlanManagementRoutingModule, PlanManagementRoutingModule,
@ -135,8 +189,12 @@ import { DrillRecordComponent } from './drill-record/drill-record.component'
MatTreeModule, MatTreeModule,
UiModule, UiModule,
TreeDiagramModule, TreeDiagramModule,
KeyUnitModule KeyUnitModule,
NzDatePickerModule,
NzInputModule,
NzButtonModule,
NzTreeSelectModule,
], ],
exports: [PlanType, AuditSatus, PlanLevel, state] exports: [PlanType, AuditSatus, PlanLevel, state],
}) })
export class PlanManagementModule { } export class PlanManagementModule {}

242
src/app/ui/navmenus/navmenus.component.ts

@ -1,18 +1,23 @@
import { Component, OnInit,Inject } from '@angular/core'; import { Component, OnInit, Inject } from "@angular/core";
import {MatTreeFlatDataSource, MatTreeFlattener} from '@angular/material/tree'; import {
import {FlatTreeControl} from '@angular/cdk/tree'; MatTreeFlatDataSource,
import {MatDialog, MatDialogRef, MAT_DIALOG_DATA} from '@angular/material/dialog'; MatTreeFlattener,
import {FormControl} from '@angular/forms'; } from "@angular/material/tree";
import { HttpClient } from '@angular/common/http'; import { FlatTreeControl } from "@angular/cdk/tree";
import { TreeService } from '../../http-interceptors/tree.service' import {
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar'; MatDialog,
MatDialogRef,
MAT_DIALOG_DATA,
} from "@angular/material/dialog";
import { FormControl } from "@angular/forms";
import { HttpClient } from "@angular/common/http";
import { TreeService } from "../../http-interceptors/tree.service";
import { MatSnackBar, MatSnackBarConfig } from "@angular/material/snack-bar";
@Component({ @Component({
selector: 'app-navmenus', selector: "app-navmenus",
templateUrl: './navmenus.component.html', templateUrl: "./navmenus.component.html",
styleUrls: ['./navmenus.component.scss'] styleUrls: ["./navmenus.component.scss"],
}) })
export class NavmenusComponent implements OnInit { export class NavmenusComponent implements OnInit {
newdata = []; newdata = [];
@ -23,105 +28,129 @@ export class NavmenusComponent implements OnInit {
level: level, level: level,
id: node.id, id: node.id,
parentId: node.parentId, parentId: node.parentId,
children:node.children, children: node.children,
url:node.url, url: node.url,
icon:node.icon icon: node.icon,
}; };
} };
treeControl = new FlatTreeControl<any>(node => node.level, node => node.expandable); treeControl = new FlatTreeControl<any>(
treeFlattener = new MatTreeFlattener(this._transformer, node => node.level, node => node.expandable, node => node.children); (node) => node.level,
(node) => node.expandable
);
treeFlattener = new MatTreeFlattener(
this._transformer,
(node) => node.level,
(node) => node.expandable,
(node) => node.children
);
dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener);
constructor(private http: HttpClient,public dialog: MatDialog,private tree:TreeService,public snackBar: MatSnackBar) { } constructor(
getlist = ():void=>{ private http: HttpClient,
this.http.get('/api/NavMenus').subscribe((data: any[])=>{ public dialog: MatDialog,
this.newdata = this.tree.toTree(data) private tree: TreeService,
public snackBar: MatSnackBar
) {}
getlist = (): void => {
this.http.get("/api/NavMenus").subscribe((data: any[]) => {
this.newdata = this.tree.toTree(data);
const nodes = this.treeControl.dataNodes; const nodes = this.treeControl.dataNodes;
const expandNodes = []; const expandNodes = [];
nodes.forEach((item) => { nodes.forEach((item) => {
if(item.expandable && this.treeControl.isExpanded(item)){ if (item.expandable && this.treeControl.isExpanded(item)) {
expandNodes.push(item.id); expandNodes.push(item.id);
} }
}); });
this.dataSource.data = this.newdata; this.dataSource.data = this.newdata;
let newNodes = this.treeControl.dataNodes; let newNodes = this.treeControl.dataNodes;
newNodes = newNodes.filter(n => { newNodes = newNodes.filter((n) => {
return expandNodes.indexOf(n.id) >= 0; return expandNodes.indexOf(n.id) >= 0;
}); });
newNodes.forEach(item => { newNodes.forEach((item) => {
this.treeControl.expand(item); this.treeControl.expand(item);
}); });
});
}) };
} treedata: any;
treedata:any
//初始化页面时渲染出tree //初始化页面时渲染出tree
ngOnInit() { ngOnInit() {
this.http.get('/api/NavMenus').subscribe((data: any[])=>{ this.http.get("/api/NavMenus").subscribe((data: any[]) => {
// console.log(111,this.data) // console.log(111,this.data)
// this.treedata = this.tree.toTree(data) // this.treedata = this.tree.toTree(data)
let _data = this.tree.toTree(data) let _data = this.tree.toTree(data);
this.dataSource.data = _data this.dataSource.data = _data;
this.treedata = _data this.treedata = _data;
}) });
} }
hasChild = (_: number, node: any) => node.expandable; hasChild = (_: number, node: any) => node.expandable;
//弹出创建窗口按钮 //弹出创建窗口按钮
createauthority(value){ createauthority(value) {
const dialogRef = this.dialog.open(CreateMenus, {//调用open方法打开对话框并且携带参数过去 const dialogRef = this.dialog.open(CreateMenus, {
width: '260px', //调用open方法打开对话框并且携带参数过去
data: {id:value.id,children:value.children,icon:value.icon,url:value.url} width: "260px",
data: {
id: value.id,
children: value.children,
icon: value.icon,
url: value.url,
},
});
dialogRef.afterClosed().subscribe((data) => {
this.newdata = [];
this.getlist();
}); });
dialogRef.afterClosed().subscribe(
data=>{
this.newdata = []
this.getlist()
}
);
} }
//删除按钮 //删除按钮
deleted(authority){ deleted(authority) {
var isdeleted = confirm("确定要删除此用户吗?") var isdeleted = confirm("确定要删除此用户吗?");
if(isdeleted){ if (isdeleted) {
//请求删除接口 //请求删除接口
this.newdata = [] this.newdata = [];
this.http.delete(`/api/NavMenus/${authority.id}`).subscribe( data=>{ this.http.delete(`/api/NavMenus/${authority.id}`).subscribe((data) => {
this.getlist() this.getlist();
}) });
} }
} }
//编辑按钮 //编辑按钮
edit(value){ edit(value) {
const dialogRef = this.dialog.open(EditMenus, {//调用open方法打开对话框并且携带参数过去 const dialogRef = this.dialog.open(EditMenus, {
width: '260px', //调用open方法打开对话框并且携带参数过去
data: {id:value.id,parentId:value.parentId,order:value.order,node:value} width: "260px",
data: {
id: value.id,
parentId: value.parentId,
order: value.order,
node: value,
},
});
dialogRef.afterClosed().subscribe((data) => {
this.newdata = [];
this.getlist();
}); });
dialogRef.afterClosed().subscribe(
data=>{
this.newdata = []
this.getlist()
}
);
} }
} }
//创建组件 //创建组件
@Component({ @Component({
selector: 'createmenus', selector: "createmenus",
templateUrl: './createmenus.component.html', templateUrl: "./createmenus.component.html",
styleUrls: ['./navmenus.component.scss'] styleUrls: ["./navmenus.component.scss"],
}) })
export class CreateMenus { export class CreateMenus {
myControl = new FormControl(); myControl = new FormControl();
//注入MatDialogRef,可以用来关闭对话框 //注入MatDialogRef,可以用来关闭对话框
//要访问对话框组件中的数据,必须使用MAT_DIALOG_DATA注入令牌 //要访问对话框组件中的数据,必须使用MAT_DIALOG_DATA注入令牌
constructor(private http: HttpClient,public dialogRef: MatDialogRef<CreateMenus>, constructor(
public snackBar: MatSnackBar,@Inject(MAT_DIALOG_DATA) public data) {} private http: HttpClient,
public dialogRef: MatDialogRef<CreateMenus>,
public snackBar: MatSnackBar,
@Inject(MAT_DIALOG_DATA) public data
) {}
onNoClick(): void { onNoClick(): void {
this.dialogRef.close(); this.dialogRef.close();
} }
onSubmit(value){ onSubmit(value) {
if(this.data.children){ if(this.data.children){
this.http.post( this.http.post(
'/api/NavMenus', '/api/NavMenus',
@ -167,26 +196,48 @@ export class CreateMenus {
} }
) )
} }
// this.http
// .post("/api/NavMenus", {
// id: "",
// name: '预案熟悉',
// icon:'featured_play_list',
// // url: value.url,
// order: 4,
// parentId: null,
// })
// .subscribe(
// (data) => {
// this.dialogRef.close();
// },
// (err) => {
// const config = new MatSnackBarConfig();
// config.verticalPosition = "top";
// config.duration = 3000;
// this.snackBar.open("请填写正确格式", "确定", config);
// }
// );
} }
} }
//编辑组件 //编辑组件
@Component({ @Component({
selector: 'editmenus', selector: "editmenus",
templateUrl: './editmenus.component.html', templateUrl: "./editmenus.component.html",
styleUrls: ['./navmenus.component.scss'] styleUrls: ["./navmenus.component.scss"],
}) })
export class EditMenus { export class EditMenus {
myControl = new FormControl(); myControl = new FormControl();
//注入MatDialogRef,可以用来关闭对话框 //注入MatDialogRef,可以用来关闭对话框
//要访问对话框组件中的数据,必须使用MAT_DIALOG_DATA注入令牌 //要访问对话框组件中的数据,必须使用MAT_DIALOG_DATA注入令牌
constructor(private http: HttpClient,public dialogRef: MatDialogRef<EditMenus>,public snackBar: MatSnackBar,@Inject(MAT_DIALOG_DATA) public data) {} constructor(
menuname:any //菜单名称 private http: HttpClient,
menuiconurl:any //菜单图标地址 public dialogRef: MatDialogRef<EditMenus>,
menuweburl:any //菜单地址 public snackBar: MatSnackBar,
@Inject(MAT_DIALOG_DATA) public data
) {}
menuname: any; //菜单名称
menuiconurl: any; //菜单图标地址
menuweburl: any; //菜单地址
ngOnInit(): void { ngOnInit(): void {
this.menuname = this.data.node.name; this.menuname = this.data.node.name;
this.menuiconurl = this.data.node.icon; this.menuiconurl = this.data.node.icon;
@ -195,33 +246,32 @@ export class EditMenus {
onNoClick(): void { onNoClick(): void {
this.dialogRef.close(); this.dialogRef.close();
} }
onSubmit(value){ onSubmit(value) {
if(value.icon){ if (value.icon) {
this.data.icon = value.icon this.data.icon = value.icon;
} }
if(value.url){ if (value.url) {
this.data.url = value.url this.data.url = value.url;
} }
this.http.put( this.http
` /api/NavMenus/${this.data.id}`, .put(` /api/NavMenus/${this.data.id}`, {
{
id: this.data.id, id: this.data.id,
name: value.name, name: value.name,
icon: this.data.icon, icon: this.data.icon,
url: this.data.url, url: this.data.url,
order:this.data.order, order: this.data.order,
parentId: this.data.parentId parentId: this.data.parentId,
} })
).subscribe( .subscribe(
data=>{ (data) => {
this.dialogRef.close(); this.dialogRef.close();
}, },
err=>{ (err) => {
const config = new MatSnackBarConfig(); const config = new MatSnackBarConfig();
config.verticalPosition = 'top'; config.verticalPosition = "top";
config.duration = 3000 config.duration = 3000;
this.snackBar.open('请填写正确格式','确定',config); this.snackBar.open("请填写正确格式", "确定", config);
} }
) );
} }
} }

1
src/index.html

@ -14,6 +14,7 @@
<body> <body>
<app-root></app-root> <app-root></app-root>
<div id="viewerjs" style="display:none"></div>
</body> </body>
<!-- <script type="text/javascript" src="./assets/kmap/kmap-service-main-kd.js"></script> --> <!-- <script type="text/javascript" src="./assets/kmap/kmap-service-main-kd.js"></script> -->

4
src/styles.scss

@ -522,3 +522,7 @@ td {
justify-content: center; justify-content: center;
} }
} }
.maxHeightTreeSelect {
max-height: 280px;
}
Loading…
Cancel
Save