Browse Source

[合并] 合并代码

master
陈鹏飞 4 years ago
parent
commit
6f0e71c71c
  1. 3
      src/app/canvas-share-data.service.ts
  2. 3
      src/app/examiner/examiner-index/examiner-index.component.ts
  3. 3
      src/app/examiner/examiner.module.ts
  4. 29
      src/app/student/examination-details/examination-details.component.html
  5. 28
      src/app/student/examination-details/examination-details.component.scss
  6. 22
      src/app/student/examination-details/examination-details.component.ts
  7. 39
      src/app/student/student-exam-record/student-exam-record.component.html
  8. 35
      src/app/student/student-exam-record/student-exam-record.component.scss
  9. 57
      src/app/student/student-exam-record/student-exam-record.component.ts
  10. 74
      src/app/student/student-index/student-index.component.ts
  11. 4
      src/app/student/student.module.ts
  12. 50
      src/app/ui/collection-tools-examinee/collection-tools.component.html
  13. 15
      src/app/ui/collection-tools-examinee/collection-tools.component.scss
  14. 465
      src/app/ui/collection-tools-examinee/collection-tools.component.ts
  15. 24
      src/app/ui/collection-tools-examinee/save.ts
  16. 17
      src/app/ui/collection-tools/collection-tools.component.ts
  17. 6
      src/app/ui/collection-tools/examinationQuestions.html
  18. 4
      src/app/ui/collection-tools/examinationQuestions.ts
  19. 6
      src/app/ui/collection-tools/save.ts

3
src/app/canvas-share-data.service.ts

@ -9,6 +9,9 @@ export class CanvasShareDataService {
constructor() { }
private _sendMessage: ReplaySubject<any> = new ReplaySubject<any>(1);
examDisposalNodesData//考生进入时获取当前试卷的处置节点
examFacilityAssetsData//考生进入时获取当前试卷要考察的消防设施
isChange = false; // 数据 是否改动
selectTemplateData: any; // 选择当前 模板数据

3
src/app/examiner/examiner-index/examiner-index.component.ts

@ -4,7 +4,7 @@
* @Author: sueRimn
* @Date: 2020-12-11 09:06:03
* @LastEditors: sueRimn
* @LastEditTime: 2020-12-21 14:25:29
* @LastEditTime: 2020-12-23 09:45:28
*/
import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core';
import {HttpClient} from '@angular/common/http'
@ -238,6 +238,7 @@ export class ExaminerIndexComponent implements OnInit {
this.jsId=''
this.js=''
this.jscheck=''
this.getAlltabledate()
}
//删除一套考题
deleteExam(examid){

3
src/app/examiner/examiner.module.ts

@ -112,6 +112,7 @@ import { FinishDia }from './examiner-index/examiner-index.component'
NzTreeModule,
NzDatePickerModule,
],
providers: [ { provide: MatPaginatorIntl, useValue: myPaginator() } ]
providers: [ { provide: MatPaginatorIntl, useValue: myPaginator() } ],
exports:[PlanLevel]
})
export class ExaminerModule { }

29
src/app/student/examination-details/examination-details.component.html

@ -101,7 +101,34 @@
</mat-accordion>
</div>
<div class="paperCenter" *ngIf="selectPaperType == '2'">作战部署</div>
<!-- 作战部署 -->
<div class="paperCenter" *ngIf="selectPaperType == '2'">
<div class="planList">
<table>
<tr>
<td>预案名称</td>
<td>添加人</td>
<td>修改时间</td>
<td>是否公开</td>
<td>编制级别</td>
<td>设置分数</td>
<td>操作</td>
</tr>
<tr *ngFor="let item of selectPaper.planList">
<td>{{item.title}}</td>
<td>{{item.creatorName}}</td>
<td>{{item.modifiedTime | date:'yyyy-MM-dd'}}</td>
<td>{{item.isPublic ? '已公开' : '未公开'}}</td>
<td>{{item.planLevel | planlevel}}</td>
<td style="color: #FF8678;">{{item.score}}分</td>
<td>
<span style="color: #07CDCF;" (click)="enterExam(item)">进入</span>
</td>
</tr>
</table>
</div>
</div>
<!-- 作战部署 -->
</div>
</div>

28
src/app/student/examination-details/examination-details.component.scss

@ -1,3 +1,5 @@
table,table tr th, table tr td { border-bottom: 1px solid #EEF1F5; }
table { text-align: center; border-collapse: collapse; padding:2px;}
.content{
width: 100%;
height: 100%;
@ -170,4 +172,30 @@ input {
}
}
}
}
//作战部署
.planList{
table{
width: 100%;
tr{
height: 42px;
font-size: 15px;
td{
input{
width: 62px;
height: 26px;
background: #F2F5F6;
border: none;
border-radius: 5px;
text-align: center;
}
span{
margin: 0 5px;
cursor: pointer;
}
}
}
tr:nth-child(1){ background: #F5FDFE; }
}
}

22
src/app/student/examination-details/examination-details.component.ts

@ -3,6 +3,7 @@ import { Component, OnInit } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { MatSnackBar } from '@angular/material/snack-bar';
import { ActivatedRoute } from '@angular/router';
import { CanvasShareDataService } from 'src/app/canvas-share-data.service';
@Component({
selector: 'app-examination-details',
@ -11,23 +12,23 @@ import { ActivatedRoute } from '@angular/router';
})
export class ExaminationDetailsComponent implements OnInit {
constructor(public http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,public route:ActivatedRoute) { }
constructor(public canvasData:CanvasShareDataService, public http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,public route:ActivatedRoute) { }
async ngOnInit(): Promise<void> {
await this.getTestInfo()
this.getUnitPlans()//将试卷的预案考题放进数据中
}
paperId:any = this.route.snapshot.queryParams.paperId //试卷id
paperData:any //试卷信息
paperCompanyData:any = []; //考生具体考卷
selectPaper:any = {id:null}; //选择当前考卷
selectPaperType:string = '1'; //选择当前考卷内容
selectPaperType:string = '1'; //选择当前考卷内容 基本信息/作战部署
//获取考卷
async getTestInfo () {
let id = this.route.snapshot.queryParams.paperId
await new Promise((resolve, reject) => {
this.http.get(`/api/Papers/${id}`).subscribe((data:any)=>{
this.http.get(`/api/Papers/${this.paperId}`).subscribe((data:any)=>{
this.paperData = data
this.paperData.paperDataInfo.forEach(element => {
element.adjoinData? element.adjoinData = JSON.parse(element.adjoinData) : null
@ -114,4 +115,17 @@ export class ExaminationDetailsComponent implements OnInit {
console.log(this.paperCompanyData)
}
//进入作战部署 考卷
enterExam(item){
console.log(item)
console.log(this.selectPaper)
sessionStorage.setItem('companyName',this.selectPaper.companyInfo.name)
sessionStorage.setItem('planId',item.planComponentId)
sessionStorage.setItem('buildingTypeId',this.selectPaper.companyInfo.buildingTypes[0].id)
sessionStorage.setItem('companyId',this.selectPaper.companyInfo.id)
let openType
item.examPlanType == 0 ? openType = 1 : openType = 2
window.open(`/canvasToolExaminee?planName=${item.title}&paperplanId=${item.id}&openType=${openType}&paperId=${this.paperId}&examId=${this.route.snapshot.queryParams.examId}&planComponentId=${item.planComponentId}`)
}
}

39
src/app/student/student-exam-record/student-exam-record.component.html

@ -1 +1,38 @@
<p>student-exam-record works!</p>
<!--
* @Descripttion:
* @version:
* @Author: sueRimn
* @Date: 2020-12-20 16:26:44
* @LastEditors: sueRimn
* @LastEditTime: 2020-12-23 13:53:33
-->
<div class="content">
<div class="centertable">
<table >
<thead>
<th style="width: 20%;">试卷名称</th>
<th style="width: 10%;">参加人</th>
<th style="width: 20%;">考核队站</th>
<th style="width: 20%;">考试时间</th>
<th style="width: 15%;">考试成绩</th>
<th style="width: 15%;">操作</th>
</thead>
<tbody>
<tr *ngFor="let item of tabledataSource">
<td>{{item.name}}</td>
<td>张三</td>
<td>广西总队</td>
<td>{{item.serverTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td style="color: #FF8678;">90分</td>
<td style="color: #07CDCF;cursor: pointer;">查看</td>
</tr>
</tbody>
</table>
<mat-paginator [length]="length"
[pageSize]="pageSize"
[pageSizeOptions]="pageSizeOptions"
(page)="chagePage($event)">
</mat-paginator>
</div>
</div>

35
src/app/student/student-exam-record/student-exam-record.component.scss

@ -0,0 +1,35 @@
.content {
width: 100%;
height: 100%;
overflow: hidden;
background: #F2F5F6;
overflow-y: auto;
}
.centertable{
width: 95%;
margin-right: 40px;
margin-left: 40px;
margin-top: 40px;
background-color: #FFFFFF;
table{
width: 100%;
td,th{
height: 48px;
font-size: 16px;
}
td{
border-bottom: 1px solid #F2F5F6;
text-align: center;
}
thead{
background-color:#F5FDFE;
width: 100%;
}
.green{
color: #07CDCF;
}
.red{
color: #FF8678;
}
}
}

57
src/app/student/student-exam-record/student-exam-record.component.ts

@ -1,4 +1,23 @@
import { Component, OnInit } from '@angular/core';
/*
* @Descripttion:
* @version:
* @Author: sueRimn
* @Date: 2020-12-20 16:26:44
* @LastEditors: sueRimn
* @LastEditTime: 2020-12-23 10:33:24
*/
import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core';
import {HttpClient} from '@angular/common/http'
import { MatDialogRef, MatDialog, MAT_DIALOG_DATA } from '@angular/material/dialog';
import { MatPaginator } from '@angular/material/paginator';
import { MatTableDataSource } from '@angular/material/table';
import { PageEvent } from '@angular/material/paginator';
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar';
import {FormControl} from '@angular/forms';
import { Router,ActivatedRoute } from '@angular/router';
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree';
import { FlatTreeControl } from '@angular/cdk/tree';
import { TreeService } from '../../http-interceptors/tree.service'
@Component({
selector: 'app-student-exam-record',
@ -7,9 +26,43 @@ import { Component, OnInit } from '@angular/core';
})
export class StudentExamRecordComponent implements OnInit {
constructor() { }
constructor(private router: Router,private activatedRoute: ActivatedRoute,public http: HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,private tree: TreeService) { }
ngOnInit(): void {
this.getAlltabledate()
}
//分页
@ViewChild(MatPaginator, {static: true})
pageEvent: PageEvent;
paginator: MatPaginator;
length:any; //共多少条数据
pageSize:any; //每页条数
pageSizeOptions: number[] = [10] //设置每页条数
PageNumber:any //第几页
startTime:[]
endTime:[]
tabledataSource//表格数据
//分页事件
chagePage(e){
this.PageNumber = e.pageIndex+1
this.getAlltabledate()
}
//获取表格信息
getAlltabledate(){
let paramsdata:any = {
PageNumber: this.PageNumber || '1',
PageSize: this.pageSizeOptions[0],
Sort: null,
SortType: null
}
this.http.get("/api/Examinations",{params:paramsdata}).subscribe((data:any)=>{
this.tabledataSource=data.items
this.length=data.totalCount
console.log(this.tabledataSource)
})
}
}

74
src/app/student/student-index/student-index.component.ts

@ -4,7 +4,7 @@
* @Author: sueRimn
* @Date: 2020-12-20 15:01:30
* @LastEditors: sueRimn
* @LastEditTime: 2020-12-22 10:08:19
* @LastEditTime: 2020-12-24 10:49:54
*/
import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core';
import {HttpClient} from '@angular/common/http'
@ -30,12 +30,18 @@ export class StudentIndexComponent implements OnInit {
ngOnInit(): void {
this.getAlltabledate()
setInterval(()=>this.getAlltabledate(),60000)
//this.idtime=setInterval(()=>this.jishi("","2020-12-22 11:03"),1000)
//console.log(this.idtime)
this.tableInterval=setInterval(()=>this.getAlltabledate(),60000)
//this.gettime("2020-12-22T18:40:00+08:00","2020-12-22T18:39:00+08:00")
//this.idtime=setInterval(()=>this.newjsq(),1000)
//this.newjsq()
}
ngOnDestroy (){
clearInterval(this.idtime)
clearInterval(this.tableInterval)
}
idtime
tableInterval
//分页
@ViewChild(MatPaginator, {static: true})
@ -68,15 +74,18 @@ export class StudentIndexComponent implements OnInit {
this.http.get("/api/Papers",{params:paramsdata}).subscribe((data:any)=>{
this.tabledataSource=data.items
this.length=data.totalCount
console.log(this.tabledataSource)
//console.log(this.tabledataSource)
})
}
//计时器
jishi(startTime,endTime){
startTime=new Date
var nowtime = new Date(startTime), //获取当前时间
//startTime=new Date
var nowtime = new Date(startTime), //获取开始时间
endtime = new Date(endTime); //定义结束时间
var lefttime = endtime.getTime() - nowtime.getTime(), //距离结束时间的毫秒数
var jieshu=nowtime.getTime()
setInterval(()=>{jieshu--})
//console.log(endtime.getSeconds()-1)
var lefttime = jieshu - nowtime.getTime(), //距离结束时间的毫秒数
leftd = Math.floor(lefttime/(1000*60*60*24)), //计算天数
lefth = Math.floor(lefttime/(1000*60*60)), //计算小时数
leftm = Math.floor(lefttime/(1000*60)%60), //计算分钟数
@ -90,6 +99,55 @@ export class StudentIndexComponent implements OnInit {
console.log(this.timecha)
}
timerID;
//time_end=new Date("2020-12-22T18:40:00+08:00").getTime();//结束的时间
time_end
//time_now_server=new Date("2020-12-22T18:30:00+08:00").getTime();//开始的时间
time_now_server
time_now_client=new Date().getTime();
//time_server_client=this.time_now_server-this.time_now_client;
time_server_client
str_time=""
gettime(endtime,stearttime){
this.time_end=new Date(endtime).getTime()
this.time_now_server=new Date(stearttime).getTime()
this.time_server_client=this.time_now_server-this.time_now_client
this.idtime=setInterval(()=>this.newtimer(),1000)
}
//新计时器
newtimer(){
var time_distance;
var int_day,int_hour,int_minute,int_second;
var time_now=new Date().getTime();
time_now=time_now+this.time_server_client;
time_distance=this.time_end-time_now;
if(time_distance>0){
int_day=Math.floor(time_distance/86400000)
time_distance-=int_day*86400000;
int_hour=Math.floor(time_distance/3600000)
time_distance-=int_hour*3600000;
int_minute=Math.floor(time_distance/60000)
time_distance-=int_minute*60000;
int_second=Math.floor(time_distance/1000)
if(int_hour<10)
int_hour="0"+int_hour;
if(int_minute<10)
int_minute="0"+int_minute;
if(int_second<10)
int_second="0"+int_second;
this.str_time=int_hour+":"+int_minute+":"+int_second;
if(this.str_time=="00:00:00")
{this.str_time="已结束"}
//console.log(this.str_time)
}else{
//timer=timer;
clearTimeout(this.timerID)
}
}
//参加考试
takeTest (e) {
let body = {

4
src/app/student/student.module.ts

@ -53,7 +53,8 @@ import { StudentRoutingModule } from './student-routing.module';
import { StudentIndexComponent } from './student-index/student-index.component';
import { StudentExamRecordComponent } from './student-exam-record/student-exam-record.component';
import { ExaminationDetailsComponent } from './examination-details/examination-details.component';
import { PlanLevel } from '../pipes/size.pipe';
import { ExaminerModule } from '../examiner/examiner.module';
@NgModule({
declarations: [StudentIndexComponent, StudentExamRecordComponent, ExaminationDetailsComponent],
@ -107,6 +108,7 @@ import { ExaminationDetailsComponent } from './examination-details/examination-d
NavigationModule,
NzTreeModule,
NzDatePickerModule,
ExaminerModule
],
providers: [ { provide: MatPaginatorIntl, useValue: myPaginator() } ]
})

50
src/app/ui/collection-tools-examinee/collection-tools.component.html

@ -2,10 +2,14 @@
<!-- header头部 -->
<div class="header">
<div class="headerTitle">{{examMsg.conpanyName}}</div>
<div class="headerCenter"> <input type="text" placeholder="请输入考试要点" [(ngModel)]="examMsg.keynote"> </div>
<div class="headerCenter">
<div *ngIf="planData" class="mainPointDiv">
<span [title]="planData.mainPoint">考试要点 : {{planData.mainPoint}}</span>
</div>
</div>
<div class="headerRight">
<button style="border: 1px solid #07CDCF; border-radius: 5px; margin: 0 15px;" (click)='openFireExamination()'><mat-icon>visibility</mat-icon>消防设施考题设定</button>
<button (click)="saveSite()" *ngIf="examType != 1"><mat-icon>description</mat-icon>保存</button>
<button (click)="saveSite()"><mat-icon>description</mat-icon>保存</button>
<button (click)="openUploadQuestions()"><mat-icon>open_in_browser</mat-icon>上传</button>
</div>
</div>
@ -43,31 +47,33 @@
<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 style="margin-left: 45px;">
<mat-icon title="选择考试节点" (click)='countValue($event)'>dashboard</mat-icon>
</label>
</div>
<div [hidden]="!toggleHandlePlans">
<nz-tree #nzTreeComponent [nzData]="treeData" nzBlockNode [nzTreeTemplate]="nzTreeTemplate" [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}">
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</label>
<!-- <div class="planIconDiv" *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 class="questionsBox">
<p>考试题目</p>
<nz-tree #nzTreeComponent [nzData]="questionstreeData" nzBlockNode [nzTreeTemplate]="nzTreeTemplate"></nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div id="terrNodePublic">
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</label>
</div>
</ng-template>
</div>
<div class="answerDiv">
<p>考生答案</p>
<nz-tree #nzTreeComponent2 [nzData]="treeData" nzBlockNode [nzTreeTemplate]="nzTreeTemplate2" [nzExpandedKeys]="defaultExpandedKeys"></nz-tree>
<ng-template #nzTreeTemplate2 let-node let-origin="origin">
<div id="terrNodePublic" (click)='selectanelPoint(node.origin)' [ngClass]="{'selectanelPoint': selectDisposalNode==node.origin.id}">
<label title="{{node.title}}" class="overflowText textNode">{{node.title}}</label>
</div>
</ng-template>
</div>
</div>
</div>
<!-- 处置预案 -->
<!-- 素材库 -->
<div id="materialBank" *ngIf="examType != 1">
<div id="materialBank">
<div class="planarGraphHeader" (click)='toggleMaterial()'>
<mat-icon *ngIf="toggleMaterialBank">keyboard_arrow_up</mat-icon>
<mat-icon *ngIf="!toggleMaterialBank">keyboard_arrow_down</mat-icon>
@ -225,7 +231,9 @@
<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()">添加</div>
<div [hidden]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)" style="width: 33%;height: 21px;line-height: 21px;text-align: center;position: absolute;right: 10px;top: 1px;z-index: 99;border: 1px solid rgb(208, 211, 214);border-radius: 2px;font-size: 13px;cursor: pointer;" (click)="imgNumBeyond()">
添加
</div>
<div style="position: relative;;width: 89%;border:1px solid rgb(208, 211, 214);height: 100px;margin: 6px auto;" class="swiper-container">
@ -235,7 +243,7 @@
<!-- 如果需要导航按钮 -->
<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">
<span style="position: absolute;right: 2px;top: 2px;cursor: pointer;z-index: 200;" [hidden]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<mat-icon class="hoverred" (click)="deleteImg()">delete</mat-icon>
</span>
</div>

15
src/app/ui/collection-tools-examinee/collection-tools.component.scss

@ -38,11 +38,16 @@
.headerCenter {
flex: 1;
overflow: hidden;
input {
width: 99%;
height: 30px;
background-color: #e7f0f0;
border-radius: 5px;
.mainPointDiv{
box-sizing: border-box;
padding-left: 8px;
cursor: default;
span{
font-family: Source Han Sans CN;
color: #FF8678;
font-size: 15px;
}
}
}
.headerRight {

465
src/app/ui/collection-tools-examinee/collection-tools.component.ts

@ -18,7 +18,6 @@ import { ActivatedRoute, Router } from '@angular/router';
import { examinationQuestionsExaminee,uploadDisposalNodesExaminee,uploadQuestionsExaminee } from './examinationQuestions'
@Component({
selector: 'app-collection-tools',
templateUrl: './collection-tools.component.html',
@ -29,7 +28,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
@ViewChild('canvas',{static: true}) canvas:WorkingAreaComponent; //父组件中获得子组件的引用
constructor(private http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,private element: ElementRef,public canvasData: CanvasShareDataService,private router:Router,private route:ActivatedRoute) { }
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent;
@ViewChild('nzTreeComponent2', { static: false }) nzTreeComponent!: NzTreeComponent;
// tree配置
private _transformer = (node, level: number) => {//要给渲染节点传那些属性参数
return {
@ -151,191 +150,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
}
pattern:boolean = false//默认为基本信息编辑
//基本信息编辑模式
baseInfo(){
if (!this.pattern) {
this.basicInfo = true
this.canvas.setNameVisible(this.basicInfo,1)
this.pattern = true
this.canvasData.gameMode = GameMode.BasicInformation
this.canvasData.selectPanelPoint = new DisposalNodeData();
this.mateDeleteCustomize()
this.getAllLibrary()
this.checkedBuildingIndex = -1
this.getSitePlan() //总平面图一层
}
}
//想定作业编辑模式
wantWork(){
if (this.pattern) {
//让基本信息图标显示
this.basicInfo = false
this.canvas.setNameVisible(this.basicInfo,0)
this.pattern = false
this.canvasData.gameMode = GameMode.Assignment
this.getAllLibrary('plan')
this.getDisposalNode()
}
}
//ngzorro tree 拖拽
nzEvent(event: NzFormatEmitEvent): void {
if(this.isDrag){
let parentId
if(this.pos == 0){
parentId = event.node.key
}else{
if(event.node.level == 0){
parentId = null
}else{
parentId = event.node.origin.parentId
}
}
let orders = {}
let originalData = JSON.parse(JSON.stringify( this.canvasData.allDisposalNode || [] )) //tree原始数据
let targetNodeData = []//拖动移入节点的数据,用于遍历求出放在该数组的第几位
//找到需要重新排序的数组
if(this.pos == 0){
originalData.forEach(item => {
if(item.parentId == event.node.key){
targetNodeData.push(item)
}
})
}else{
if(event.node.origin.parentId){//如果拖动目标为非一级节点
originalData.forEach(item => {
if(item.parentId == event.node.origin.parentId){
targetNodeData.push(item)
}
})
}else{//如果拖动目标为一级节点
originalData.forEach(item => {
if(!item.parentId){
targetNodeData.push(item)
}
})
}
}
let idArr = []
targetNodeData.forEach(i => {
idArr.push(i.id)
})
console.log(6666666666666,event);
if(this.pos == 0 && event.node.origin.children.length == 1){
console.log("移入,没有兄弟")
let key = event.dragNode.key
orders[key] = 0
parentId = event.node.key
}else{
console.log("移入,多个兄弟")
let array = []
targetNodeData.forEach(item => {
if(item.id != event.dragNode.key){ //将拖动项先移除掉
array.push(item)
}
})
if(event.dragNode.isEnd[event.dragNode.isEnd.length - 1]){ //如果移入到最后一个
console.log("最后")
array.push(event.dragNode.origin)
}else if(event.dragNode.isStart[event.dragNode.isStart.length - 1]){//如果移入到第一个
console.log("第一")
array.unshift(event.dragNode.origin)
}else{//如果移入中间位置
console.log("中间")
array.splice(event.node.origin.order, 0, event.dragNode.origin)
}
array.forEach((item,key) => {
orders[item.id] = key
})
}
let obj ={
id : event.dragNode.origin.id,
parentId : parentId,
orders : orders
}
this.http.put("/api/DisposalNodes/Sort",obj).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('排序成功','确定',config)
this.refurbishTreeData()
})
}
}
isDrag //是否可以拖动
pos//放置位置
beforeDrop = (arg: NzFormatBeforeDropEvent) => {
if(arg.dragNode.origin.isDataNode && arg.node.level === 0){//如果为数据节点则不允许拖到一级节点
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('数据节点不允许拖拽到一级节点','确定',config)
this.isDrag = false
return of(false);
}else if(!arg.dragNode.origin.isDataNode && arg.node.level === 2){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('处置节点不允许拖拽到三级节点','确定',config)
this.isDrag = false
return of(false);
}else{
this.isDrag = true
this.pos = arg.pos
return of(true)
}
}
//ngzorro tree 拖拽
//天气栏目
weatherBtn = true
weatherBtnShow(){
this.weatherBtn = !this.weatherBtn
}
weatherBtnHidden(){
this.weatherBtn = !this.weatherBtn
}
//底部切换按钮div
detailsAndattentBtn = true
//节点详情
details(){
this.detailsAndattentBtn = true
}
//注意事项
attent(){
this.detailsAndattentBtn = false
}
//消防要素div边框高度调节
firecategoriesDivMouseDown(e){
document.onmousemove = (ev) => {
let bodyHeight = document.body.clientHeight //网页宽度
let maxHeight = this.element.nativeElement.querySelector('#rightDiv').clientHeight - 35 //最大宽度
if(bodyHeight - ev.clientY >= maxHeight){
this.element.nativeElement.querySelector('#firecategories').style.height = maxHeight+ 'px'
this.element.nativeElement.querySelector('#property').style.height = 35+ 'px'
}else{
this.element.nativeElement.querySelector('#firecategories').style.height = (bodyHeight - ev.clientY) + 'px' ;
this.element.nativeElement.querySelector('#property').style.height = (this.element.nativeElement.querySelector('#rightDiv').clientHeight - this.element.nativeElement.querySelector('#firecategories').clientHeight) + 'px'
}
}
document.onmouseup = () => {
document.onmousemove = null;
document.onmouseup = null;
}
}
//左侧div边框宽度调节
leftDivMouseDown(e){
@ -354,22 +169,6 @@ export class CollectionToolsExamineeComponent implements OnInit {
}
}
//底部div高度调节
bottomDivMouseDown(e){
document.onmousemove = (ev) => {
let bodyHeight = document.body.clientHeight //网页高度
let maxHeight = this.element.nativeElement.querySelector('#rightDiv').clientHeight //最大高度
if(bodyHeight - ev.clientY >= maxHeight){
this.element.nativeElement.querySelector('#bottomDiv').style.height = maxHeight + 'px'
}else{
this.element.nativeElement.querySelector('#bottomDiv').style.height = (bodyHeight - ev.clientY) + 'px' ;
}
}
document.onmouseup = () => {
document.onmousemove = null;
document.onmouseup = null;
}
}
//右侧div边框宽度调节
rightDivMouseDown(e){
@ -625,15 +424,15 @@ export class CollectionToolsExamineeComponent implements OnInit {
}
ngOnInit(): void {
this.getAllLibrary('plan') //获取素材库
this.getAllBuildings() //获取所有建筑
this.getAllFirePlan() //获取当前单位灾情
this.getPaperPlanData()//获得当前考题题目
let that = this
window.setTimeout(()=>{
document.getElementById("functionalDomainContent").oncontextmenu = function (event) {
// that.canvas.cancelPaint()
that.selectImageIndex = -1
event.preventDefault();
};
@ -646,9 +445,63 @@ export class CollectionToolsExamineeComponent implements OnInit {
})
}
paperId:any = this.route.snapshot.queryParams.paperId
planData:any //当前考题题目
Facilities:any //当前预案考题所有楼层要考的基本信息素材
//获得单位预案设定
getPaperPlanData(){
let params = {
paperId : this.paperId
}
this.http.get(`/api/PaperPlans`,{params:params}).subscribe((data:any) => {
console.log(456,data)
data.forEach(item => {
item.id == this.route.snapshot.queryParams.paperplanId ?
this.planData = item : null
})
let questions = JSON.parse(this.planData.examDisposalNodesData)
this.handleHybridTree(questions,'题目')
this.Facilities = JSON.parse(this.planData.examFacilityAssetsData)
})
}
//获得所有素材库
basicAssetLibraries:any = []//基本信息素材库
getAllAssetLibraries(Facilitiesitem){
this.basicAssetLibraries = []
this.http.get('/api/AssetLibraries').subscribe(async(data:any) => {
console.log('素材库',data)
for (let index = 0; index < data.length; index++) {
const element = data[index];
let params = {
libraryId:element.id,
assetIds : Facilitiesitem.basicAssetsId
}
await new Promise ((resolve,reject)=>{
this.http.get('/api/Assets',{params:params})
.subscribe((data:any) => {
console.log(index,data)
if(data && data.length != 0){
element.images = data
this.basicAssetLibraries.push(
element
)
}
resolve()
})
})
}
console.log(55555,this.basicAssetLibraries)
this.allLibrary = [...this.originalallLibrary,...this.basicAssetLibraries]
})
}
ngAfterViewInit(): void {
ngAfterViewInit(): void {
this.getSitePlan() //获取总平面图/楼层
// 监听canvas组件选中素材事件
@ -669,20 +522,11 @@ export class CollectionToolsExamineeComponent implements OnInit {
this.renovateTreeData(false)
})
}
copyAssetData:any //存储用于复制的素材
//复制素材
copyAsset(){
this.canvas.copy()
}
//粘贴素材
pasteAsset(){
let companyId = sessionStorage.getItem("companyId")
let buildingId = this.beforeOneCheckedBuilding.id
let floorId = this.selectingSitePlan.id
this.canvas.paste(companyId,buildingId,floorId)
}
basicInfo:boolean = true //基本信息名称显隐
wantToWork:boolean = true //想定作业名称显隐
@ -771,79 +615,17 @@ export class CollectionToolsExamineeComponent implements OnInit {
//选择建筑
checkedBuilding(item,index){
if (this.checkedBuildingIndex!=index) {
if (this.canvasData.isChange) { //true 数据被改动
let isTrue = confirm('是否保存当前编辑数据')
if (isTrue) { //先保存数据 在切换
let isSuccess = this.saveSite()//true的时候 先保存数据
if (isSuccess != false) {
this.beforeOneCheckedBuilding = item
this.checkedBuildingIndex = index
if (index==-1) { //总平面图数据
this.getSitePlan()
} else { //建筑楼层/区域数据
this.getBuildingSitePlan(item)
}
}
} else {
this.beforeOneCheckedBuilding = item
this.checkedBuildingIndex = index
if (index==-1) { //总平面图数据
this.getSitePlan()
} else { //建筑楼层/区域数据
this.getBuildingSitePlan(item)
}
}
} else { //flase 数据未被改动
this.beforeOneCheckedBuilding = item
this.checkedBuildingIndex = index
if (index==-1) { //总平面图数据
this.getSitePlan()
} else { //建筑楼层/区域数据
this.getBuildingSitePlan(item)
}
} //if
this.beforeOneCheckedBuilding = item
this.checkedBuildingIndex = index
if (index==-1) { //总平面图数据
this.getSitePlan()
} else { //建筑楼层/区域数据
this.getBuildingSitePlan(item)
}
} //if
}
//删除建筑
deleteBuilding(e,item){
e.stopPropagation();
if(confirm("是否删除该建筑") == true){
let isHave = this.canvasData.allDisposalNode.find(items=>{ return items.buildingId === item.id })
if (isHave == undefined) {
this.http.delete(`/api/Buildings/${item.id}`).subscribe(data=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('删除成功','确定',config);
this.http.get("/api/Buildings",{
params:{
companyId :this.params.companyId
}
}).subscribe(data=>{
this.allBuildings = data
this.beforeOneCheckedBuilding = {name:"总平面图"}
this.checkedBuildingIndex = -1
this.getSitePlan()
})
},err=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('删除失败','确定',config);
this.getAllBuildings()
})
} else { //建筑 含有数据节点时
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('含有数据节点的建筑不允许删除','确定',config);
}
}
}
storeyData //将建筑素材和当前楼层素材合二为一
@ -852,9 +634,8 @@ export class CollectionToolsExamineeComponent implements OnInit {
//storeyData为当前楼层拥有的消防设施
this.storeyData = storeyData
let data = JSON.parse(JSON.stringify(this.allFireElements)) //所有消防要素模板
console.log(data)
let treeData = [] //tree型 处理完成后的数据
data.forEach(element => {
this.allFireElements.forEach(element => {
element.key = element.id
element.isTemplate = true //添加模板标识
element.isLook = true //添加是否可见标识
@ -881,9 +662,9 @@ export class CollectionToolsExamineeComponent implements OnInit {
}
}
}
data.forEach(item => { if (item.parentId == element.id) {element.children.push(item)} });
this.allFireElements.forEach(item => { if (item.parentId == element.id) {element.children.push(item)} });
});
data.forEach(element => {
this.allFireElements.forEach(element => {
if (!element.parentId) { treeData.push(element) }
});
@ -913,8 +694,6 @@ export class CollectionToolsExamineeComponent implements OnInit {
      return result;
  }
// console.log(filterEmpty(treeData))
this.dataSource.data = filterEmpty(treeData)
this.treeControl.expandAll()
@ -953,7 +732,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
//点击树节点的显示隐藏icon
clickLookItem(node){
//修改真实素材islook属性
for(let key in this.storeyData.data){
if(key == node.id){
@ -976,8 +755,6 @@ export class CollectionToolsExamineeComponent implements OnInit {
}
})
}
//子节点跟随父节点的islook变化
  if(node.children && node.children.length != 0){
      node.children.forEach(item=>{
@ -1024,10 +801,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
}else{
iconVisibleArr.push(node.id)
}
console.log(1,iconVisibleArr)
console.log(2,node.isLook)
this.canvas.setIconVisible(iconVisibleArr,!node.isLook)
}
//打开消防设施考题设定
@ -1070,13 +844,12 @@ export class CollectionToolsExamineeComponent implements OnInit {
let beforeOneId = this.selectingSitePlan.id || '' //当前 选中 平面图 楼层/区域 id
let companyBuildingData = JSON.parse(JSON.stringify( this.canvasData.originalcompanyBuildingData || {} )) // 当前 单位/建筑 数据
let storeyData = JSON.parse(JSON.stringify( this.canvasData.originaleveryStoreyData || {} )) //当前 楼层 数据
// for(let key in companyBuildingData.data){
// if (companyBuildingData.data[key].FloorId === beforeOneId) { //处理 单位/建筑 数据是否归于当前楼层下
// storeyData.data[key] = companyBuildingData.data[key]
// }
// }
console.log(566,storeyData.data)
this.Facilities.forEach(item => {
item.key == this.selectingSitePlan.id ?
this.getAllAssetLibraries(item) :
null
})
for(let key in storeyData.data){ //筛选数据
storeyData.data[key].key = storeyData.data[key].Id
let noMatch = this.allFireElements.find( every=> every.id===storeyData.data[key].FireElementId )
@ -1138,7 +911,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
this.selectingSitePlan = this.sitePlanData[0] || {}
this.canvasData.selectStorey = this.sitePlanData[0] || {} //服务中 存一份数据
this.selectSitePlanIndex = 0
Promise.all([fireData,planData]).then((res)=>{
this.getSitePlanStorey(this.selectingSitePlan) //获取 平面图 楼层数据
})
@ -1241,45 +1014,14 @@ export class CollectionToolsExamineeComponent implements OnInit {
if (this.selectSitePlanIndex != index) {
this.canvasData.selectPanelPoint = new DisposalNodeData();
if (this.canvasData.isChange) { //true 数据被改动
let isTrue = confirm('是否保存当前编辑数据')
if (isTrue) { //先保存数据 在切换
let isSuccess = this.saveSite()//true的时候 先保存数据
if (isSuccess != false) {
this.selectingSitePlan = item
this.selectSitePlanIndex = index
this.canvasData.selectStorey = item //服务中 存一份数据
if (this.checkedBuildingIndex==-1) { //总平面图时
this.getSitePlanStorey(item) //获取 平面图 楼层数据
} else { //楼层/区域时
this.getBuildingStorey(item) //获取 建筑 楼层数据
}
}
} else { //不保存数据 直接切换
this.selectingSitePlan = item
this.selectSitePlanIndex = index
this.canvasData.selectStorey = item //服务中 存一份数据
if (this.checkedBuildingIndex==-1) { //总平面图时
this.getSitePlanStorey(item) //获取 平面图 楼层数据
this.getSitePlanCompanyData()
} else { //楼层/区域时
this.getBuildingStorey(item) //获取 建筑 楼层数据
let params = { buildingId: this.beforeOneCheckedBuilding.id }
this.getBuildingData(params)
}
}
} else { //false 数据没被改动
this.selectingSitePlan = item
this.selectSitePlanIndex = index
this.canvasData.selectStorey = item //服务中 存一份数据
if (this.checkedBuildingIndex==-1) { //总平面图时
this.getSitePlanStorey(item) //获取 平面图 楼层数据
} else { //楼层/区域时
this.getBuildingStorey(item) //获取 建筑 楼层数据
}
} //if
this.selectingSitePlan = item
this.selectSitePlanIndex = index
this.canvasData.selectStorey = item //服务中 存一份数据
if (this.checkedBuildingIndex==-1) { //总平面图时
this.getSitePlanStorey(item) //获取 平面图 楼层数据
} else { //楼层/区域时
this.getBuildingStorey(item) //获取 建筑 楼层数据
}
}
}
@ -1542,6 +1284,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
}
allLibrary:any = []; //所有素材库 + 素材
originalallLibrary = []; //原始所有素材库 + 素材 备份
selectLibrary:any; //选中的素材库
selectImage:any; //选中的素材库图片
selectImageIndex:number; //选中的素材库图片index
@ -1552,8 +1295,10 @@ export class CollectionToolsExamineeComponent implements OnInit {
data.forEach(element => {
element.images = []
});
this.originalallLibrary = data
this.allLibrary = data
this.selectImageIndex = -1
console.log(654,this.allLibrary)
// this.canvas.cancelPaint()
})
}
@ -1579,7 +1324,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
//处置预案
examType = this.route.snapshot.queryParams.openType // 预案类型 1=已存在/2=自定义
examType = Number(this.route.snapshot.queryParams.openType) // 预案类型 1=已存在/2=自定义
allFirePlan:any = []; //所有灾情
selectDisposalNode:string = ''; //当前点击tree节点 css选中样式
@ -1587,7 +1332,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
getAllFirePlan () {
let api
this.examType == 1? api='/api/Disasters' : api='/api/ExamDisasters'
let params = {componentId: sessionStorage.getItem('planId')}
let params = {componentId: this.route.snapshot.queryParams.planComponentId}
this.http.get(api,{params:params}).subscribe((data:any)=>{
if (!data.length) { //该 单位没有灾情时
let msg = {
@ -1609,25 +1354,27 @@ export class CollectionToolsExamineeComponent implements OnInit {
//获取所有处置节点
getDisposalNode () {
let api
this.examType == 1? api='/api/DisposalNodes' : api='/api/ExamDisposalNodes'
console.log(4444,this.examType)
api='/api/ExamDisposalNodes'
this.selectDisposalNode = ''
let params
this.examType == 1? params = {disasterId: this.allFirePlan[0].id || ''} : params = {examDisasterId: this.allFirePlan[0].id || ''}
params = {examDisasterId: this.allFirePlan[0].id || '',disposalNodeType:1,examinationId:this.route.snapshot.queryParams.examId}
this.http.get(api,{params:params}).subscribe(data=>{ //处置节点
this.canvasData.allDisposalNode = data
this.handleHybridTree()
this.handleHybridTree(this.canvasData.allDisposalNode,'答案')
})
}
treeData:any = []; //渲染tree处理完成数据
questionstreeData:any = [];//渲染tree处理完成数据(题目)
defaultExpandedKeys:any = []; //首次渲染 tree展开状态
//处理 节点 Tree数据
handleHybridTree () {
this.defaultExpandedKeys = []
handleHybridTree (disposalNodedata,type) {
// this.defaultExpandedKeys = []
let treeData = []
let data = JSON.parse(JSON.stringify( this.canvasData.allDisposalNode || [] ))
let data = JSON.parse(JSON.stringify( disposalNodedata || [] ))
data.forEach(element => {
this.defaultExpandedKeys.push(element.id)
// this.defaultExpandedKeys.push(element.id)
element.title = element.name //name
element.key = element.id //id
element.children = [] //children
@ -1645,23 +1392,26 @@ export class CollectionToolsExamineeComponent implements OnInit {
data.forEach(element=>{
!element.parentId? treeData.push(element) : null
})
this.treeData = [...treeData]
this.defaultExpandedKeys = [...this.defaultExpandedKeys]
type == '题目' ? this.questionstreeData = [...treeData] : this.treeData = [...treeData]
// this.defaultExpandedKeys = [...this.defaultExpandedKeys]
}
//刷新 treeData 保存已展开节点
refurbishTreeData () {
let api
this.examType == 1? api='/api/DisposalNodes' : api='/api/ExamDisposalNodes'
api='/api/ExamDisposalNodes'
this.defaultExpandedKeys = []
let params
this.examType == 1? params = {disasterId: this.allFirePlan[0].id || ''} : params = {examDisasterId: this.allFirePlan[0].id || ''}
params = {examDisasterId: this.allFirePlan[0].id,disposalNodeType:1,examinationId:this.route.snapshot.queryParams.examId}
this.http.get(api,{params:params}).subscribe(nodeData=>{ //处置节点
this.canvasData.allDisposalNode = nodeData
let oldTreeData = this.nzTreeComponent.getExpandedNodeList()
oldTreeData.forEach(item=>{
this.defaultExpandedKeys.push(item.key)
})
console.log(1,oldTreeData)
console.log(2,this.defaultExpandedKeys)
let treeData = []
let data = JSON.parse(JSON.stringify( this.canvasData.allDisposalNode || [] ))
data.forEach(element => {
@ -1812,6 +1562,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
//点击 处置Tree节点
selectanelPoint (e) {
console.log(12111,e)
if (!e.buildingAreaId && !e.sitePlanId) { //当前节点 不是 数据节点 时
let msg = this.canvasData.findDisposalNode(e.id)
this.canvasData.selectPanelPointBaseData = msg
@ -1824,7 +1575,7 @@ export class CollectionToolsExamineeComponent implements OnInit {
if (this.canvasData.selectPanelPoint.DisposalNodeId != e.id) { //选择节点 不是当前节点时
let api
this.examType == 1? api='/api/DisposalNodeData' : api='/api/ExamDisposalNodeData'
api='/api/ExamDisposalNodeData'
let params = {nodeId: e.id}
let parameter = { //查询 节点 对应 建筑/楼层 index,id
buildingIndex: e.sitePlanId? -1 : this.allBuildings.findIndex(item=>{ return item.id===e.buildingId }), //总平面图/建筑 index

24
src/app/ui/collection-tools-examinee/save.ts

@ -3,6 +3,7 @@ import { HttpClient, HttpHeaders } from '@angular/common/http';
import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
import { MatSnackBar, MatSnackBarConfig } from '@angular/material/snack-bar';
import {CanvasShareDataService,DisposalNodeData} from '../../canvas-share-data.service' //引入服务
import { ActivatedRoute } from '@angular/router';
// 保存想定作业第一个弹窗
@Component({
selector: 'dialog-overview-example-dialog',
@ -52,7 +53,8 @@ export class saveOneDialogExaminee {
public dialogRef: MatDialogRef<saveTwoDialogExaminee>,
public canvasData: CanvasShareDataService,
public snackBar: MatSnackBar,
@Inject(MAT_DIALOG_DATA) public data) {}
@Inject(MAT_DIALOG_DATA) public data,
public route:ActivatedRoute) {}
type = this.data.type
allDisposalNode = this.data.allDisposalNode
@ -120,11 +122,13 @@ export class saveOneDialogExaminee {
imageUrls: null,
parentId: this.nodeItem ? this.nodeItem.id : null,
examDisasterId: this.data.disasterId,
ExamPlanComponentId: sessionStorage.getItem('planId') || '',
ExamPlanComponentId: this.route.snapshot.queryParams.planComponentId || '',
companyId: this.data.siteOrbuilding == -1 ? sessionStorage.getItem('companyId') : null,
sitePlanId: this.data.siteOrbuilding==-1 ? this.selectedSiteData.id : null,
buildingId: this.selectedBuildingData.id || null,
buildingAreaId: this.data.siteOrbuilding!=-1 ? this.selectedSiteData.id : null
buildingAreaId: this.data.siteOrbuilding!=-1 ? this.selectedSiteData.id : null,
examinationId:this.route.snapshot.queryParams.examId,
disposalNodeType:1
}
if(type == 'old'){
let istrue = this.canvasData.findDisposalNode(this.nodeItem.id,name)
@ -181,7 +185,7 @@ export class saveOneDialogExaminee {
data: JSON.stringify(this.canvasData.selectPanelPoint.Data) || null,
version: this.canvasData.selectPanelPoint.Version || "2.0",
ExamDisposalNodeId: data.id,
ExamPlanComponentId: sessionStorage.getItem("planId"),
ExamPlanComponentId: this.route.snapshot.queryParams.planComponentId,
}
this.http.post(`/api/ExamDisposalNodeData`,objData).subscribe(data => {
const config = new MatSnackBarConfig();
@ -240,11 +244,13 @@ export class saveOneDialogExaminee {
imageUrls: null,
parentId: this.nodeItem ? this.nodeItem.id : null,
examDisasterId: this.data.disasterId,
ExamPlanComponentId: sessionStorage.getItem('planId') || '',
ExamPlanComponentId: this.route.snapshot.queryParams.planComponentId || '',
companyId: null,
sitePlanId: null,
buildingId: null,
buildingAreaId: null
buildingAreaId: null,
examinationId:this.route.snapshot.queryParams.examId,
disposalNodeType:1
}
dispositionNodeData.weather = this.canvasData.selectPanelPointBaseData.weather
@ -255,6 +261,7 @@ export class saveOneDialogExaminee {
dispositionNodeData.notes = this.canvasData.selectPanelPointBaseData.notes
//1.先创建一个处置节点 然后 .then 2.创建数据节点到刚创建的处置节点 3.然后拿着创建好的数据节点的id 将平面图data保存
new Promise((resolve,reject) => {
console.log(1,dispositionNodeData)
this.http.post("/api/ExamDisposalNodes",dispositionNodeData).subscribe((data:any) => {
resolve(data.id)
})
@ -269,15 +276,12 @@ export class saveOneDialogExaminee {
})
}).then((data:any) => {
// 保存平面图数据到当前节点
// console.log(6666,data)
// let postdata =JSON.parse(JSON.stringify(this.canvasData.selectPanelPoint))
// postdata.Data = JSON.stringify(postdata.Data)
let objData = {
id: null,
data: JSON.stringify(this.canvasData.selectPanelPoint.Data) || null,
version: this.canvasData.selectPanelPoint.Version || "2.0",
ExamDisposalNodeId: data.id,
ExamPlanComponentId: sessionStorage.getItem("planId"),
ExamPlanComponentId: this.route.snapshot.queryParams.planComponentId,
}
this.http.post(`/api/ExamDisposalNodeData`,objData).subscribe(data => {

17
src/app/ui/collection-tools/collection-tools.component.ts

@ -901,9 +901,10 @@ export class CollectionToolsComponent implements OnInit {
//storeyData为当前楼层拥有的消防设施
this.storeyData = storeyData
let data = JSON.parse(JSON.stringify(this.allFireElements)) //所有消防要素模板
console.log(data)
console.log(889,this.storeyData)
let treeData = [] //tree型 处理完成后的数据
data.forEach(element => {
this.allFireElements.forEach(element => {
element.key = element.id
element.isTemplate = true //添加模板标识
element.isLook = true //添加是否可见标识
@ -920,7 +921,7 @@ export class CollectionToolsComponent implements OnInit {
//定义查看模式下能看到的元素
element.isLookPattern = true
if(element.parentId){
data.forEach(i => {
this.allFireElements.forEach(i => {
if(i.id == element.parentId){
i.isLookPattern = true
}
@ -930,9 +931,9 @@ export class CollectionToolsComponent implements OnInit {
}
}
}
data.forEach(item => { if (item.parentId == element.id) {element.children.push(item)} });
this.allFireElements.forEach(item => { if (item.parentId == element.id) {element.children.push(item)} });
});
data.forEach(element => {
this.allFireElements.forEach(element => {
if (!element.parentId) { treeData.push(element) }
});
@ -955,15 +956,13 @@ export class CollectionToolsComponent implements OnInit {
          }
      }
  }
  
 
  function filterEmpty(listData) {
      const result = [];
      recursionFilterEmpty(listData, result);
      return result;
  }
// console.log(filterEmpty(treeData))
this.dataSource.data = filterEmpty(treeData)
this.treeControl.expandAll()
@ -1239,6 +1238,7 @@ export class CollectionToolsComponent implements OnInit {
getSitePlanCompanyData () {
return new Promise ((resolve,reject)=>{
this.http.get('/api/CompanyData',{params:this.params}).subscribe((data:any)=>{
this.canvasData.originalcompanyBuildingData = data || {} // 单位原数据
this.canvasData.originalcompanyBuildingData.data? this.canvasData.originalcompanyBuildingData.data = JSON.parse(this.canvasData.originalcompanyBuildingData.data) : this.canvasData.originalcompanyBuildingData.data = {}
this.canvasData.originalcompanyBuildingData.version? null : this.canvasData.originalcompanyBuildingData.version = "2.0"
@ -1252,6 +1252,7 @@ export class CollectionToolsComponent implements OnInit {
getSitePlanStorey (e) {
let params = {sitePlanId: e.id}
this.http.get(`/api/SitePlanData`,{params}).subscribe((data:any)=>{
console.log(12345,data)
this.canvasData.originaleveryStoreyData = data || {} // 楼层原数据
this.canvasData.originaleveryStoreyData.data? this.canvasData.originaleveryStoreyData.data = JSON.parse(this.canvasData.originaleveryStoreyData.data) : this.canvasData.originaleveryStoreyData.data = {}
this.canvasData.originaleveryStoreyData.version? null : this.canvasData.originaleveryStoreyData.version = "2.0"

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

@ -3,7 +3,7 @@
<div id="nodeTree" style="max-height: 300px;overflow-y: auto; margin: 25px 0;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
#nzTreeComponent3
[nzData]="renderData"
nzCheckable
nzMultiple
@ -13,10 +13,10 @@
(nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)"
(nzCheckBoxChange)="nzEvent($event)"
[nzTreeTemplate]="nzTreeTemplate"
[nzTreeTemplate]="nzTreeTemplate3"
>
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<ng-template #nzTreeTemplate3 let-node let-origin="origin">
<div class="treeNodeTemplate">
<label class="overflowText textNode">{{node.origin.name || node.origin.Name}}</label>
</div>

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

@ -18,7 +18,7 @@ export class examinationQuestions {
constructor(private http:HttpClient, public dialog: MatDialog, public snackBar: MatSnackBar, public dialogRef: MatDialogRef<any>,
@Inject(MAT_DIALOG_DATA) public data) {}
@ViewChild('nzTreeComponent', { static: false }) nzTreeComponent!: NzTreeComponent;
@ViewChild('nzTreeComponent3', { static: false }) nzTreeComponent!: NzTreeComponent;
defaultCheckedKeys = []; //指定选中复选框的树节点 key值
defaultExpandedKeys = []; //展开指定的树节点 key值
@ -68,6 +68,8 @@ export class examinationQuestions {
let oldTreeData = this.nzTreeComponent.getCheckedNodeList()
// console.log(oldTreeData)
let alltreedata = JSON.parse(sessionStorage.getItem("tree型数据"))
let keyArr = []
oldTreeData.forEach(element => {

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

@ -124,7 +124,8 @@ export class saveOneDialog {
companyId: this.data.siteOrbuilding == -1 ? sessionStorage.getItem('companyId') : null,
sitePlanId: this.data.siteOrbuilding==-1 ? this.selectedSiteData.id : null,
buildingId: this.selectedBuildingData.id || null,
buildingAreaId: this.data.siteOrbuilding!=-1 ? this.selectedSiteData.id : null
buildingAreaId: this.data.siteOrbuilding!=-1 ? this.selectedSiteData.id : null,
disposalNodeType:0
}
if(type == 'old'){
let istrue = this.canvasData.findDisposalNode(this.nodeItem.id,name)
@ -244,7 +245,8 @@ export class saveOneDialog {
companyId: null,
sitePlanId: null,
buildingId: null,
buildingAreaId: null
buildingAreaId: null,
disposalNodeType:0
}
dispositionNodeData.weather = this.canvasData.selectPanelPointBaseData.weather

Loading…
Cancel
Save