From 5c8f0fbe5ffdcab3d53e6d1894588546ceb95f28 Mon Sep 17 00:00:00 2001
From: cpf <1105965053@qq.com>
Date: Sun, 13 Dec 2020 15:51:08 +0800
Subject: [PATCH] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E7=BC=96=E5=88=B6?=
=?UTF-8?q?=E5=B7=A5=E5=85=B7=E4=BF=AE=E6=94=B9=E5=9F=BA=E6=9C=AC=E5=AE=8C?=
=?UTF-8?q?=E6=88=90?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../collection-tools.component.html | 10 +-
.../collection-tools.component.ts | 25 ++++-
.../examinationQuestions.html | 33 +++++++
.../collection-tools/examinationQuestions.ts | 93 +++++++++++++++++++
src/app/ui/collection-tools/saveOne.html | 6 +-
.../ui/collection-tools/uploadQuestions.html | 45 +++++++++
src/app/ui/ui.module.ts | 3 +-
7 files changed, 204 insertions(+), 11 deletions(-)
create mode 100644 src/app/ui/collection-tools/examinationQuestions.html
create mode 100644 src/app/ui/collection-tools/examinationQuestions.ts
create mode 100644 src/app/ui/collection-tools/uploadQuestions.html
diff --git a/src/app/ui/collection-tools/collection-tools.component.html b/src/app/ui/collection-tools/collection-tools.component.html
index 59ff229..32493aa 100644
--- a/src/app/ui/collection-tools/collection-tools.component.html
+++ b/src/app/ui/collection-tools/collection-tools.component.html
@@ -1,13 +1,13 @@
diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts
index e2b8397..af86678 100644
--- a/src/app/ui/collection-tools/collection-tools.component.ts
+++ b/src/app/ui/collection-tools/collection-tools.component.ts
@@ -16,6 +16,7 @@ import { delay } from 'rxjs/operators';
import { windows } from 'src/app/interface';
import { GameMode } from 'src/app/working-area/model/gameMode';
import { ActivatedRoute, Router } from '@angular/router';
+import { examinationQuestions,uploadQuestions } from './examinationQuestions'
@@ -627,6 +628,11 @@ export class CollectionToolsComponent implements OnInit {
isSixShow = true
isSixbtn = true //控制想定作业编辑按钮
isxxx = true //控制查看编辑模式的编辑模式按钮
+ examMsg = { //单位,考试信息
+ conpanyName: '富丽华大酒店', //单位名称
+ keynote: '', //考试要点
+ grade: '', //分数
+ }
ngOnInit(): void {
sessionStorage.setItem('companyId','5fa2512ef8eb762cb03c65fb')
@@ -658,7 +664,8 @@ export class CollectionToolsComponent implements OnInit {
ngAfterViewInit(): void {
- this.getSitePlan()
+ this.getSitePlan() //获取总平面图/楼层
+
// 监听canvas组件选中素材事件
this.canvas.on("select",obj=>{
//选中素材属性注入函数
@@ -1306,6 +1313,20 @@ export class CollectionToolsComponent implements OnInit {
// };
}
+ //打开消防设施考题设定
+ openFireExamination () {
+ let treeData = JSON.parse( JSON.stringify(this.dataSource.data) )
+ let data = { treeData: treeData }
+ let dialogRef = this.dialog.open(examinationQuestions,{data});
+ }
+
+ //上传考题
+ openUploadQuestions () {
+ let treeData = JSON.parse( JSON.stringify(this.dataSource.data) )
+ let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ) }
+ let dialogRef = this.dialog.open(uploadQuestions,{data});
+ }
+
//封装 刷新 tree 数据
async renovateTreeData (isRefresh:boolean = true) {
this.allFireElements[this.allFireElements.length-1].children = []
@@ -1348,7 +1369,7 @@ export class CollectionToolsComponent implements OnInit {
toggleExpandPanel:boolean = false; //左侧可展开面板展开或关闭
toggleExpandPanelRight:boolean = false; //右侧可展开面板展开或关闭
togglePlane:boolean = true; //可展开面板平面图 显隐
- toggleMaterialBank:boolean = false; //可展开面板素材库 显隐
+ toggleMaterialBank:boolean = true; //可展开面板素材库 显隐
toggleHandlePlans:boolean = true; //可展开面板处置预案 显隐
//可展开面板展开或关闭
toggle () {
diff --git a/src/app/ui/collection-tools/examinationQuestions.html b/src/app/ui/collection-tools/examinationQuestions.html
new file mode 100644
index 0000000..aa5e6f3
--- /dev/null
+++ b/src/app/ui/collection-tools/examinationQuestions.html
@@ -0,0 +1,33 @@
+
+
消防设施考题设定
+
+
+
+
+
+
+
+ {{node.name}}
+
+ ({{node.children.length}})
+
+
+
+
+
+
+ {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}
+
+
+
+ {{node.name}}
+
+ ({{node.children.length}})
+
+
+
+
+
+
+
退出
+
\ No newline at end of file
diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts
new file mode 100644
index 0000000..d441b0b
--- /dev/null
+++ b/src/app/ui/collection-tools/examinationQuestions.ts
@@ -0,0 +1,93 @@
+import { Component, OnInit, Inject } from '@angular/core';
+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 { FlatTreeControl } from '@angular/cdk/tree';
+import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree';
+
+@Component({
+ selector: 'dialog-examination-questions',
+ templateUrl: './examinationQuestions.html',
+ styleUrls: ['./collection-tools.component.scss',]
+})
+export class examinationQuestions {
+
+ constructor(private http:HttpClient, public dialog: MatDialog, public snackBar: MatSnackBar, public dialogRef: MatDialogRef
,
+ @Inject(MAT_DIALOG_DATA) public data) {}
+ // tree配置
+ private _transformer = (node, level: number) => {//要给渲染节点传那些属性参数
+ return {
+ expandable: !!node.children && node.children.length > 0,
+ name: node.name || node.Name,
+ level: level,
+ id: node.id || node.Id,
+ children:node.children,
+ isTemplate:node.isTemplate,
+ isNewElement:node.isNewElement,
+ isLook:node.isLook,
+ isLookPattern:node.isLookPattern || null
+ };
+ }
+ treeControl = new FlatTreeControl(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);
+ hasChild = (_: number, node: any) => node.expandable;
+
+ ngOnInit(): void {
+ this.dataSource.data = this.data.treeData
+ this.treeControl.expandAll()
+ }
+
+}
+
+@Component({
+ selector: 'dialog-upload-questions',
+ templateUrl: './uploadQuestions.html',
+ styleUrls: ['./collection-tools.component.scss',]
+})
+export class uploadQuestions {
+
+ constructor(private http:HttpClient, public dialog: MatDialog, public snackBar: MatSnackBar, public dialogRef: MatDialogRef,
+ @Inject(MAT_DIALOG_DATA) public data) {}
+ // tree配置
+ private _transformer = (node, level: number) => {//要给渲染节点传那些属性参数
+ return {
+ expandable: !!node.children && node.children.length > 0,
+ name: node.name || node.Name,
+ level: level,
+ id: node.id || node.Id,
+ children:node.children,
+ isTemplate:node.isTemplate,
+ isNewElement:node.isNewElement,
+ isLook:node.isLook,
+ isLookPattern:node.isLookPattern || null
+ };
+ }
+ treeControl = new FlatTreeControl(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);
+ hasChild = (_: number, node: any) => node.expandable;
+
+ ngOnInit(): void {
+ this.dataSource.data = this.data.treeData
+ this.treeControl.expandAll()
+ }
+
+ //上传
+ submit () {
+ if (this.data.question.grade && this.data.question.keynote) {
+ const config = new MatSnackBarConfig();
+ config.verticalPosition = 'top';
+ config.duration = 3000
+ this.snackBar.open('上传成功','确定',config);
+ this.dialogRef.close()
+ } else {
+ const config = new MatSnackBarConfig();
+ config.verticalPosition = 'top';
+ config.duration = 3000
+ this.snackBar.open('请填写必填项','确定',config);
+ }
+ }
+
+}
\ No newline at end of file
diff --git a/src/app/ui/collection-tools/saveOne.html b/src/app/ui/collection-tools/saveOne.html
index a6b0b32..9017f65 100644
--- a/src/app/ui/collection-tools/saveOne.html
+++ b/src/app/ui/collection-tools/saveOne.html
@@ -1,5 +1,5 @@
-处置节点保存
+处置节点保存
- 新建节点并保存
- 保存到已有节点
+ 新建节点并保存
+ 保存到已有节点
\ No newline at end of file
diff --git a/src/app/ui/collection-tools/uploadQuestions.html b/src/app/ui/collection-tools/uploadQuestions.html
new file mode 100644
index 0000000..6e0988b
--- /dev/null
+++ b/src/app/ui/collection-tools/uploadQuestions.html
@@ -0,0 +1,45 @@
+
+
上传
+
设置分数
+
+
+
+
考试要点
+
+
+
+
考核消防设施
+
+
+
+
+
+
+
+ {{node.name}}
+
+ ({{node.children.length}})
+
+
+
+
+
+
+ {{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}
+
+
+
+ {{node.name}}
+
+ ({{node.children.length}})
+
+
+
+
+
+
+
+ 确定
+ 取消
+
+
\ No newline at end of file
diff --git a/src/app/ui/ui.module.ts b/src/app/ui/ui.module.ts
index e0a90db..c2d4739 100644
--- a/src/app/ui/ui.module.ts
+++ b/src/app/ui/ui.module.ts
@@ -70,8 +70,9 @@ import {leftFunctionalDomainComponent,editPlaneFigureComponent,addDisposalNodeCo
import {saveOneDialog,saveTwoDialog} from './collection-tools/save'
import {WorkingAreaComponent} from '../working-area/working-area.component'
import { NzTreeModule } from 'ng-zorro-antd/tree';
+import { examinationQuestions,uploadQuestions } from './collection-tools/examinationQuestions'
@NgModule({
- declarations: [FolderDialog,ViewDetails,ChangepasswordComponent,SizePipe,NamePipe,NamePipe2,NamePipe3,ConfirmpswDirective, AllFileComponent, ChangeuserdataComponent, UploadFilesComponent,AddEnterpriserUser,EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser,TeacherManagementComponent,editTeacher,AddTeacher,seeTeacher, LearningRecordDetailsComponent, EhartsStatisticsComponent, CreateExamComponent, LookOverTestComponent, StatisticAnalysisComponent, JoinExamComponent, TestRecordsComponent,testState,CreateDialog,CollectionToolsComponent,CreateBuilding,EditBuilding,ViewDetailss,leftFunctionalDomainComponent,editPlaneFigureComponent,addDisposalNodeComponent,editDisposalNodeComponent,saveOneDialog,saveTwoDialog,WorkingAreaComponent],
+ declarations: [FolderDialog,ViewDetails,ChangepasswordComponent,SizePipe,NamePipe,NamePipe2,NamePipe3,ConfirmpswDirective, AllFileComponent, ChangeuserdataComponent, UploadFilesComponent,AddEnterpriserUser,EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser,TeacherManagementComponent,editTeacher,AddTeacher,seeTeacher, LearningRecordDetailsComponent, EhartsStatisticsComponent, CreateExamComponent, LookOverTestComponent, StatisticAnalysisComponent, JoinExamComponent, TestRecordsComponent,testState,CreateDialog,CollectionToolsComponent,CreateBuilding,EditBuilding,ViewDetailss,leftFunctionalDomainComponent,editPlaneFigureComponent,addDisposalNodeComponent,editDisposalNodeComponent,saveOneDialog,saveTwoDialog,WorkingAreaComponent,examinationQuestions,uploadQuestions],
imports: [
NzDatePickerModule,