chenjingyu 4 years ago
parent
commit
cfe49513ae
  1. 6
      src/app/app-routing.module.ts
  2. 32
      src/app/examiner/create-test-score/create-test-score.component.html
  3. 390
      src/app/examiner/create-test-score/create-test-score.component.ts
  4. 4
      src/app/examiner/examiner-index/examiner-index.component.html
  5. 65
      src/app/examiner/examiner-index/examiner-index.component.ts
  6. 2
      src/app/pages/lockscreen/lockscreen.component.ts
  7. 43
      src/app/student/examination-details/examination-details.component.html
  8. 114
      src/app/student/examination-details/examination-details.component.scss
  9. 25
      src/app/student/examination-details/examination-details.component.spec.ts
  10. 117
      src/app/student/examination-details/examination-details.component.ts
  11. 2
      src/app/student/student-index/student-index.component.html
  12. 12
      src/app/student/student-index/student-index.component.ts
  13. 3
      src/app/student/student.module.ts
  14. 298
      src/app/ui/collection-tools-examinee/collection-tools.component.html
  15. 480
      src/app/ui/collection-tools-examinee/collection-tools.component.scss
  16. 25
      src/app/ui/collection-tools-examinee/collection-tools.component.spec.ts
  17. 1882
      src/app/ui/collection-tools-examinee/collection-tools.component.ts
  18. 30
      src/app/ui/collection-tools-examinee/examinationQuestions.html
  19. 346
      src/app/ui/collection-tools-examinee/examinationQuestions.ts
  20. 291
      src/app/ui/collection-tools-examinee/panel.scss
  21. 301
      src/app/ui/collection-tools-examinee/save.ts
  22. 5
      src/app/ui/collection-tools-examinee/saveOne.html
  23. 53
      src/app/ui/collection-tools-examinee/saveTwo.html
  24. 14
      src/app/ui/collection-tools-examinee/uploadDisposalNodes.html
  25. 51
      src/app/ui/collection-tools-examinee/uploadQuestions.html
  26. 9
      src/app/ui/collection-tools/collection-tools.component.ts
  27. 80
      src/app/ui/collection-tools/examinationQuestions.ts
  28. 5
      src/app/ui/ui.module.ts

6
src/app/app-routing.module.ts

@ -16,6 +16,8 @@ import { LockscreenComponent } from './pages/lockscreen/lockscreen.component';
import {AuthGuard} from './auth.guard'
import { CreateTestScoreComponent } from './examiner/create-test-score/create-test-score.component';
import { CollectionToolsComponent } from './ui/collection-tools/collection-tools.component';
import { ExaminationDetailsComponent } from './student/examination-details/examination-details.component';
import { CollectionToolsExamineeComponent } from './ui/collection-tools-examinee/collection-tools.component';
@ -30,7 +32,9 @@ const routes: Routes = [
]
},
{ path:'examiner/create-test-score', component:CreateTestScoreComponent,canActivate: [AuthGuard],}, //创建试卷具体分数页面
{ path:'canvasTool', component:CollectionToolsComponent,canActivate: [AuthGuard], }, //编制工具
{ path:'canvasTool', component:CollectionToolsComponent,canActivate: [AuthGuard], }, //考官编制工具
{ path:'canvasToolExaminee', component:CollectionToolsExamineeComponent,canActivate: [AuthGuard], }, //考生编制工具
{ path:'examinationDetails', component:ExaminationDetailsComponent,canActivate: [AuthGuard], }, //考生试卷 考试基本信息/作战部署
{ path:'adminLogin', component:LoginComponent}, //管理员登录路由
{ path:'login', component:LockscreenComponent}, //教员学员登录路由

32
src/app/examiner/create-test-score/create-test-score.component.html

@ -21,7 +21,7 @@
</tr>
<tr style="cursor: pointer;" *ngFor="let item of unitId;let key = index" (click)="clickUnitName(key)" [ngClass]="{'selectedLi': key == selectedUnitIndex}">
<td>{{item.name}}</td>
<td class="colorspan">{{item.score}}</td>
<td class="colorspan">{{item.score}}+{{item.planScore || 0}}</td>
</tr>
</table>
</div>
@ -66,7 +66,7 @@
[nzData]="unit.basicInfoNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.basicInfoNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -109,7 +109,7 @@
[nzData]="unit.aroundNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.aroundNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -152,7 +152,7 @@
[nzData]="unit.keySiteNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.keySiteNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -195,7 +195,7 @@
[nzData]="unit.funDivNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.funDivNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -238,7 +238,7 @@
[nzData]="unit.fireFacNodes"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzCheckedKeys]="unit.fireFacNodesKey"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event,key)"
@ -263,11 +263,11 @@
</div>
</div>
<div class="fightdeploydiv" [hidden]="!(selectedTab == 2)">
<div class="addPlan" (click)="addPlan()">
<div class="fightdeploydiv" [hidden]="!(selectedTab == 2) ">
<div class="addPlan" (click)="addPlan()" *ngIf="!(pattern=='look')">
<mat-icon style="vertical-align: text-top">add_circle_outline</mat-icon>添加预案
</div>
<div class="planList">
<div class="planList" *ngIf="unitId[selectedUnitIndex]">
<table>
<tr >
<td>预案名称</td>
@ -276,19 +276,19 @@
<td>是否公开</td>
<td>编制级别</td>
<td>设置分数</td>
<td>操作</td>
<td *ngIf="!(pattern=='look')">操作</td>
</tr>
<tr *ngFor="let item of unitId[selectedUnitIndex].planList">
<td>{{item.name}}</td>
<td>{{item.title}}</td>
<td>{{item.creatorName}}</td>
<td>{{item.modifiedTime | date:'yyyy-MM-dd'}}</td>
<td>{{item.openRange}}</td>
<td>{{item.isPublic ? '已公开' : '未公开'}}</td>
<td>{{item.planLevel | planlevel}}</td>
<td>
<input (input)="planItemScore(item)" type="number" [(ngModel)]="item.score">
<input onchange="if(!value)value=0" (input)="planItemScore()" type="number" [(ngModel)]="item.score">
</td>
<td>
<span style="color: #07CDCF;" (click)="edit(item)">编辑</span>
<td *ngIf="!(pattern=='look')">
<span style="color: #07CDCF;" (click)="edit(item)" >编辑</span>
<span style="color: #FF8678;" (click)="deletePlan(item)">删除</span>
</td>
</tr>
@ -302,7 +302,7 @@
<div class="btn" (click)="goBack()">
上一步
</div>
<div class="btn" (click)="save()">
<div class="btn" (click)="save()" *ngIf="!(pattern=='look')">
完成
</div>
</div>

390
src/app/examiner/create-test-score/create-test-score.component.ts

@ -9,7 +9,9 @@ import { DisabledTimeFn, DisabledTimePartial } from 'ng-zorro-antd/date-picker';
import getISOWeek from 'date-fns/getISOWeek';
import setHours from 'date-fns/setHours';
import { NzFormatEmitEvent, NzTreeComponent } from 'ng-zorro-antd/tree';
import { Router } from '@angular/router';
import { ActivatedRoute, Router } from '@angular/router';
import { async } from '@angular/core/testing';
import { functions } from 'firebase';
@Component({
selector: 'app-create-test-score',
templateUrl: './create-test-score.component.html',
@ -17,7 +19,7 @@ import { Router } from '@angular/router';
})
export class CreateTestScoreComponent implements OnInit {
constructor(private router:Router,public dialog: MatDialog,private http: HttpClient,public snackBar: MatSnackBar) { }
constructor(private router:Router,public dialog: MatDialog,private http: HttpClient,public snackBar: MatSnackBar,private route:ActivatedRoute) { }
selectedTab:number = 1 //选中的选项卡
selectTab(index){
setTimeout(() => {
@ -25,42 +27,93 @@ export class CreateTestScoreComponent implements OnInit {
}, 0);
}
pattern:any = this.route.snapshot.queryParams.pattern || ''
ngOnInit(): void {
for (let y = 0, length = this.unitId.length; y < length; y++){
let element = this.unitId[y]
element.score = 0
element.basicInfoScore = 0
element.basicInfoItemScore = 0
element.basicInfoNodes = []
element.aroundScore = 0
element.aroundItemScore = 0
element.aroundNodes = []
element.keySiteScore = 0
element.keySiteItemScore = 0
element.keySiteNodes = []
element.funDivScore = 0
element.funDivItemScore = 0
element.funDivNodes = []
element.fireFacScore = 0
element.fireFacItemScore = 0
element.fireFacNodes = []
}
this.getUnitData().then(()=>{
this.getAround().then(()=>{
this.getKeySite().then(()=>{
this.getFunDiv().then(()=>{
this.getFireFac()
if(this.route.snapshot.queryParams.pattern){
this.getSoloPaper()
}else{
this.unitId = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
for (let y = 0, length = this.unitId.length; y < length; y++){
let element = this.unitId[y]
element.score = 0
element.basicInfoScore = 0
element.basicInfoItemScore = 0
element.basicInfoNodes = []
element.aroundScore = 0
element.aroundItemScore = 0
element.aroundNodes = []
element.keySiteScore = 0
element.keySiteItemScore = 0
element.keySiteNodes = []
element.funDivScore = 0
element.funDivItemScore = 0
element.funDivNodes = []
element.fireFacScore = 0
element.fireFacItemScore = 0
element.fireFacNodes = []
}
this.getUnitData().then(()=>{
this.getAround().then(()=>{
this.getKeySite().then(()=>{
this.getFunDiv().then(()=>{
this.getFireFac()
})
})
})
})
this.getPaperPlans().then(()=>{
this.planItemScore()
})
}
}
//获得指定试卷信息。
getSoloPaper(){
this.http.get(`/api/Papers/${sessionStorage.getItem('paperId')}`).subscribe((data:any) => {
data.paperDataInfo.forEach(item => {
this.unitId.push(JSON.parse(item.originalData))
})
console.log('试卷信息',this.unitId)
this.planItemScore()
})
}
//获取所有考试设定
async getPaperPlans(){
for (let y = 0, length = this.unitId.length; y < length; y++){
let element = this.unitId[y]
await new Promise((resolve,reject)=>{
this.http.get('/api/PaperPlans',{params:{
paperId : sessionStorage.getItem('paperId'),
companyId : element.id
}}).subscribe(data => {
console.log('当前试卷的预案列表',data)
element.planList = data
resolve(1)
})
})
}
}
//当前选中的单位
selectedUnitIndex = 0
clickUnitName(key){
this.selectedUnitIndex = key
}
unitId:any = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
unitId:any = []
//获取单位基本信息
async getUnitData(){
@ -314,14 +367,14 @@ export class CreateTestScoreComponent implements OnInit {
let result1 = await new Promise((resolve, reject) => {
this.http.get('/api/CompanyImportantLocations',{params:id}).subscribe((data:any)=>{
//如果存在单位毗邻
//如果存在单位重点部位
let newData = []
data.forEach(item => {
item.isLeaf = true
item.key = item.id
item.name ? newData.push(item) : null
})
if(data.length != 0){
if(newData.length != 0){
this.unitId[y].keySiteNodes.push({
name: '单位重点部位',
key: (Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5),
@ -347,7 +400,7 @@ export class CreateTestScoreComponent implements OnInit {
})
console.log(element)
//获取当前单位所有建筑重点部位
@ -564,8 +617,6 @@ export class CreateTestScoreComponent implements OnInit {
examScore:any = 0//整个试卷的总分
//计算分数
calculateScore(key){
//key代表第几个建筑
@ -585,6 +636,7 @@ export class CreateTestScoreComponent implements OnInit {
x += i.score
})
}
element.planScore = x
examScore2 += Number(x)
})
this.examScore = examScore + examScore2
@ -592,7 +644,7 @@ export class CreateTestScoreComponent implements OnInit {
//tree的选择事件
nzEvent(event: NzFormatEmitEvent,key): void {
if(event.node.origin.type == '基本信息' || (event.node.parentNode && event.node.parentNode.origin.type == '基本信息')){
let selectedNum = []
@ -696,6 +748,7 @@ export class CreateTestScoreComponent implements OnInit {
}
}
if(type == '重点部位'){
console.log('重点部位')
let selectedNum = 0
this.unitId[key].keySiteNodes.forEach(item => {
item.children.forEach(i => {
@ -721,7 +774,7 @@ export class CreateTestScoreComponent implements OnInit {
this.unitId[key].funDivItemScore = 0
}
}
if(type == '消防设施'){
if(type == '数据核验'){
let selectedNum = 0
this.unitId[key].fireFacNodes.forEach(item => {
item.children.forEach(i => {
@ -762,9 +815,8 @@ export class CreateTestScoreComponent implements OnInit {
}
//每条预案分数增加在试卷分数
planItemScore(item){
planItemScore(){
//计算整个试卷的总分
console.log(item)
let examScore = 0
this.unitId.forEach(element => {
examScore += element.score
@ -777,6 +829,7 @@ export class CreateTestScoreComponent implements OnInit {
x += i.score
})
}
element.planScore = x
examScore2 += Number(x)
})
this.examScore = examScore + examScore2
@ -792,18 +845,87 @@ export class CreateTestScoreComponent implements OnInit {
//删除每条预案试卷
deletePlan(item){
this.unitId[this.selectedUnitIndex].planList.forEach((element,key)=>{
if(item == element){
this.unitId[this.selectedUnitIndex].planList.splice(key,1)
}
})
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('删除成功','确定',config);
if(window.confirm('你确定要删除该预案设定吗?')){
this.http.delete(`/api/PaperPlans/${item.id}`).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('删除成功','确定',config);
this.unitId[this.selectedUnitIndex].planList.forEach((element,key)=>{
if(item == element){
this.unitId[this.selectedUnitIndex].planList.splice(key,1)
}
})
this.planItemScore()
})
}else{
}
console.log(item)
}
//保存
save(){
this.unitId.forEach(item => {
//建筑的基本信息选中key集合
item.basicInfoNodesKey = []
item.basicInfoNodes.forEach((i,key) => {
if(i.checked){
item.basicInfoNodesKey.push(i.key)
}else{
i.children.forEach(ele => {
ele.checked ? item.basicInfoNodesKey.push(ele.key) : null
})
}
})
//四周毗邻选中key集合
item.aroundNodesKey = []
item.aroundNodes.forEach((i,key) => {
if(i.checked){
item.aroundNodesKey.push(i.key)
}else{
i.children.forEach(ele => {
ele.checked ? item.aroundNodesKey.push(ele.key) : null
})
}
})
//重点部位选中key集合
item.keySiteNodesKey = []
item.keySiteNodes.forEach((i,key) => {
if(i.checked){
item.keySiteNodesKey.push(i.key)
}else{
i.children.forEach(ele => {
ele.checked ? item.keySiteNodesKey.push(ele.key) : null
})
}
})
//功能分区选中key集合
item.funDivNodesKey = []
item.funDivNodes.forEach((i,key) => {
if(i.checked){
item.funDivNodesKey.push(i.key)
}else{
i.children.forEach(ele => {
ele.checked ? item.funDivNodesKey.push(ele.key) : null
})
}
})
//数据核验选中key集合
item.fireFacNodesKey = []
item.fireFacNodes.forEach((i,key) => {
if(i.checked){
item.fireFacNodesKey.push(i.key)
}else{
i.children.forEach(ele => {
ele.checked ? item.fireFacNodesKey.push(ele.key) : null
})
}
})
})
let copyDatas = JSON.parse(JSON.stringify(this.unitId))
//循环每个建筑处理数据筛选出选中数据
copyDatas.forEach(item => {
@ -900,7 +1022,7 @@ export class CreateTestScoreComponent implements OnInit {
i.children = newChildren
delete i.selected
})
console.log(111,item)
// console.log(111,item)
//建筑的重点部位模块处理
item.keySiteNodes ? item.keySiteNodes.forEach((i,key) => {
i.selected ? i.selected = null : null
@ -1068,7 +1190,7 @@ export class CreateTestScoreComponent implements OnInit {
copyDatas.forEach((item,key) =>{
paperDataInfo[key] = {}
paperDataInfo[key].id = null
paperDataInfo[key].paperId = null
paperDataInfo[key].paperId = sessionStorage.getItem('paperId')
paperDataInfo[key].companyId = item.id
paperDataInfo[key].basicInfoData = item.basicInfoNodes ? JSON.stringify(item.basicInfoNodes) : '[]'
paperDataInfo[key].basicInfoScore = item.basicInfoScore
@ -1079,26 +1201,28 @@ export class CreateTestScoreComponent implements OnInit {
paperDataInfo[key].functionalDivisionData = item.funDivNodes ? JSON.stringify(item.funDivNodes) : '[]'
paperDataInfo[key].functionalDivisionScore = item.funDivScore
paperDataInfo[key].facilityData = item.fireFacNodes ? JSON.stringify(item.fireFacNodes) : '[]'
paperDataInfo[key].facilityScore = item.fireFacScore
paperDataInfo[key].planList = item.planList
paperDataInfo[key].facilityScore = item.fireFacScore,
paperDataInfo[key].originalData = JSON.stringify(this.unitId[key])
})
//判断是否存在总分填写后没有勾选 或者勾选了没有填写总分的情况
paperDataInfo.forEach(element => {
element.planList ? element.planList.forEach(item => {
for (let index = 0; index < this.unitId.length; index++) {
const element = this.unitId[index];
element.planList ?
element.isPlanScore = element.planList.some(item=>{
if(!item.score || item.score == 0){
element.isPlanScore = false
}else{
element.isPlanScore = true
return false
} else{
return true
}
}) : null
}): null
console.log('xixi',element.isPlanScore)
//判断存在总分填写后没有勾选题目
if( (element.basicInfoScore != 0 && JSON.parse(element.basicInfoData).length == 0) ||
(element.adjoinScore != 0 && JSON.parse(element.adjoinData).length == 0) ||
(element.importLocationScore != 0 && JSON.parse(element.importLocationData).length == 0) ||
(element.functionalDivisionScore != 0 && JSON.parse(element.functionalDivisionData).length == 0) ||
(element.facilityScore != 0 && JSON.parse(element.facilityData).length == 0) ){
if( (element.basicInfoScore != 0 && element.basicInfoNodesKey.length == 0) ||
(element.aroundScore != 0 && element.aroundNodesKey.length == 0) ||
(element.keySiteScore != 0 && element.keySiteNodesKey.length == 0) ||
(element.funDivScore != 0 && element.funDivNodesKey.length == 0) ||
(element.fireFacScore != 0 && element.fireFacNodesKey.length == 0) ){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
@ -1107,11 +1231,11 @@ export class CreateTestScoreComponent implements OnInit {
}else
//勾选了题目存在没有填写总分
if(
(element.basicInfoScore == 0 && JSON.parse(element.basicInfoData).length != 0) ||
(element.adjoinScore == 0 && JSON.parse(element.adjoinData).length != 0) ||
(element.importLocationScore == 0 && JSON.parse(element.importLocationData).length != 0) ||
(element.functionalDivisionScore == 0 && JSON.parse(element.functionalDivisionData).length != 0) ||
(element.facilityScore == 0 && JSON.parse(element.facilityData).length != 0) ){
(element.basicInfoScore == 0 && element.basicInfoNodesKey.length != 0) ||
(element.aroundScore == 0 && element.aroundNodesKey.length != 0) ||
(element.keySiteScore == 0 && element.keySiteNodesKey.length != 0) ||
(element.funDivScore == 0 && element.funDivNodesKey.length != 0) ||
(element.fireFacScore == 0 && element.fireFacNodesKey.length != 0) ){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
@ -1119,29 +1243,58 @@ export class CreateTestScoreComponent implements OnInit {
return
}else
//存在预案没有填写总分
if(!element.isPlanScore){
if(element.isPlanScore == false){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('存在预案未填写总分的分组','确定',config);
return
}else{
if(window.confirm('你确定要创建该试卷吗?')){
console.log(555,this.unitId)
}
}
console.log(666,paperDataInfo)
}else{
//设置paperPlan的分数
// console.log(123,this.unitId)
// console.log(456,paperDataInfo)
let _this = this
async function setPlansScore(){
for (let index = 0; index < _this.unitId.length; index++) {
const element = _this.unitId[index];
for (let i = 0; i < element.planList.length; i++) {
await new Promise((resolve, reject) => {
const item = element.planList[i];
_this.http.put(`/api/PaperPlans/ModifyScore/${item.id}`,'',{params:{
score : item.score
}}).subscribe(((data) => {
resolve(i)
console.log('修改分数成功'+i,item.score)
}))
})
}
}
}
}
setPlansScore().then(()=>{
console.log('修改分数成功2222')
let body = {
id:sessionStorage.getItem('paperId'),
valid: true,
paperDataInfo:paperDataInfo
}
this.http.put(`/api/Papers/UpdatePaperData/${sessionStorage.getItem('paperId')}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('创建试卷成功','确定',config);
})
})
}
//上一步
goBack(){
@ -1211,7 +1364,7 @@ export class AddPlanTwoDialog {
}
ngOnInit(): void {
this.get2DPlan()
console.log(this.data)
console.log(1,this.data.companyData.companyData.id)
}
//获取当前公司的二维预案
@ -1235,12 +1388,37 @@ export class AddPlanTwoDialog {
confirm(){
if(this.planType){//如果选择的是已存在预案
if(this.selectedRadioData){
this.dialogRef.close(this.selectedRadioData);
sessionStorage.setItem('companyName',this.data.companyData.companyData.name)
sessionStorage.setItem('planId',this.selectedRadioData.id)
sessionStorage.setItem('buildingTypeId',this.data.companyData.companyData.buildingTypes[0].id)
sessionStorage.setItem('companyId',this.data.companyData.companyData.id)
window.open(`/canvasTool?openType=1&planName=${this.selectedRadioData.name}`)
console.log(this.selectedRadioData)
let paperPlansBody = {
id: null,
paperId: sessionStorage.getItem('paperId'),
planComponentId: this.selectedRadioData.id,
examPlanType: 0,
creatorId: JSON.parse(sessionStorage.getItem('creatorData')).id,
modifiedTime: new Date(),
isPublic: this.selectedRadioData.openRange == "未公开" ? false : true,
title: this.selectedRadioData.name,
mainPoint: null,
score: 0,
examFacilityAssetsData: null,
examDisposalNodesData: null,
companyId:this.data.companyData.companyData.id,
creatorName:this.selectedRadioData.creatorName,
planLevel:Number(this.selectedRadioData.planLevel)
}
let paperPlansParams:any = {
paperId:sessionStorage.getItem('paperId'),
}
this.http.post('/api/PaperPlans',paperPlansBody,{params:paperPlansParams}).subscribe((data2:any) => {
this.dialogRef.close(data2);
sessionStorage.setItem('companyName',this.data.companyData.companyData.name)
sessionStorage.setItem('planId',this.selectedRadioData.id)
sessionStorage.setItem('buildingTypeId',this.data.companyData.companyData.buildingTypes[0].id)
sessionStorage.setItem('companyId',this.data.companyData.companyData.id)
window.open(`/canvasTool?openType=1&planName=${this.selectedRadioData.name}&paperplanId=${data2.id}`)
})
}else{
if(this.dataSource.length == 0){
this.dialogRef.close();
@ -1255,6 +1433,12 @@ export class AddPlanTwoDialog {
}else{//如果选择的是自定义预案
let level = sessionStorage.getItem('level')
let body = {
id: null,
@ -1268,13 +1452,37 @@ export class AddPlanTwoDialog {
this.http.post("/api/ExamPlanComponents2D",body,{params:{
companyId : this.data.companyData.companyData.id
}}).subscribe((data:any)=>{
// console.log("创建成功")
this.dialogRef.close(data);
sessionStorage.setItem("planId",data.id);
sessionStorage.setItem("companyId",this.data.companyData.companyData.id)
sessionStorage.setItem("buildingTypeId",this.data.companyData.companyData.buildingTypes[0].id)
sessionStorage.setItem("editable","1")
window.open(`/canvasTool?openType=2&planName=${this.customPlanName}`)
console.log("创建自定义二维成功")
let paperPlansBody = {
id: null,
paperId: sessionStorage.getItem('paperId'),
planComponentId: data.id,
examPlanType: 1,
creatorId: JSON.parse(sessionStorage.getItem('creatorData')).id,
modifiedTime: new Date(),
isPublic: true,
title: this.customPlanName,
mainPoint: null,
score: 0,
examFacilityAssetsData: null,
examDisposalNodesData: null,
companyId:this.data.companyData.companyData.id,
creatorName:sessionStorage.getItem('realName'),
planLevel:Number(sessionStorage.getItem('level'))
}
let paperPlansParams:any = {
paperId:sessionStorage.getItem('paperId')
}
console.log(this)
this.http.post('/api/PaperPlans',paperPlansBody,{params:paperPlansParams}).subscribe((data2:any) => {
this.dialogRef.close(data2);
sessionStorage.setItem("planId",data.id);
sessionStorage.setItem("companyId",this.data.companyData.companyData.id)
sessionStorage.setItem("buildingTypeId",this.data.companyData.companyData.buildingTypes[0].id)
sessionStorage.setItem("editable","1")
window.open(`/canvasTool?openType=2&planName=${this.customPlanName}&paperplanId=${data2.id}`)
})
})
}
}

4
src/app/examiner/examiner-index/examiner-index.component.html

@ -84,8 +84,8 @@
<!-- <td [ngClass]="{'green': item.testState == '开考中','red':item.testState == '已结束'}">{{item.testState}}</td> -->
<td [ngClass]="{'green': item.status == '1','red':item.status == '2'}">{{item.status=="2"?"已结束":item.status=="0"?"未开考":"开考中"}}</td>
<td>
<span style="color: #07CDCF;margin-right: 10px;">编辑</span>
<span style="color: #07CDCF;">详情</span>
<span style="color: #07CDCF;margin-right: 10px;cursor: pointer;" (click)="editPaper(item)">编辑</span>
<span style="color: #07CDCF;cursor: pointer;" (click)="lookPaper(item)">详情</span>
<span *ngIf="item.status=='0'" style="color: #FF8678;margin-left: 10px;cursor: pointer;" (click)="deleteExam(item.id)">删除</span>
</td>
</tr>

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

@ -34,11 +34,18 @@ export class ExaminerIndexComponent implements OnInit {
this.getunitdata();
this.getOrganizations();
this.getUnittype();
this.getAlltabledate()
setInterval(()=>this.getAlltabledate(),60000)
//this.getHelp()
this.getAlltabledate();
this.getProfiles()
}
//获取登录账号的个人资料
Profiles:any
getProfiles(){
this.http.get('/api/ExamAccounts/Profiles').subscribe((data:any) => {
console.log(data)
this.Profiles = data
sessionStorage.setItem('creatorData',JSON.stringify(data))
})
}
displayedColumns: string[] = ['name','startTime','endTime', 'examzhong','scc'];
tabledataSource:any
accound
@ -115,6 +122,17 @@ export class ExaminerIndexComponent implements OnInit {
)
}
//编辑试卷
editPaper(item){
sessionStorage.setItem("paperId",item.id)
this.router.navigateByUrl("/examiner/create-test-score?pattern=edit")
}
lookPaper(item){
sessionStorage.setItem("paperId",item.id)
this.router.navigateByUrl("/examiner/create-test-score?pattern=look")
}
//获得所有组织机构
getOrganizations(){
this.http.get('/api/Organizations').subscribe(
@ -135,25 +153,25 @@ export class ExaminerIndexComponent implements OnInit {
)
}
//获得查询支队信息
help(){
let paramsdata:any = {
PageNumber: this.PageNumber || '1',
PageSize: this.pageSizeOptions[0],
Sort: null,
SortType: null,
//获得查询支队信息
help(){
let paramsdata:any = {
PageNumber: this.PageNumber || '1',
PageSize: this.pageSizeOptions[0],
Sort: null,
SortType: null,
}
//console.log(paramsdata)
this.http.get("/api/Papers",{params:paramsdata}).subscribe((data:any)=>{
this.tabledataSource=data
console.log(this.tabledataSource)
})
}
//分页事件
chagePage(e){
this.PageNumber = e.pageIndex+1
this.getAlltabledate()
}
//console.log(paramsdata)
this.http.get("/api/Papers",{params:paramsdata}).subscribe((data:any)=>{
this.tabledataSource=data
console.log(this.tabledataSource)
})
}
//分页事件
chagePage(e){
this.PageNumber = e.pageIndex+1
this.getAlltabledate()
}
//获取表格信息
getAlltabledate(){
let paramsdata:any = {
@ -289,9 +307,10 @@ export class FinishDia{
//获取登录账号的个人资料
Profiles:any
getProfiles(){
this.http.get('/api/ExamAccounts/Profiles').subscribe(data => {
this.http.get('/api/ExamAccounts/Profiles').subscribe((data:any) => {
console.log(data)
this.Profiles = data
sessionStorage.setItem('creatorData',JSON.stringify(data))
})
}

2
src/app/pages/lockscreen/lockscreen.component.ts

@ -35,7 +35,7 @@ export class LockscreenComponent implements OnInit {
sessionStorage.setItem("refreshToken",data.refreshToken);
sessionStorage.setItem("level",data.level);
this.token.startUp(); //登陆成功启动定时器刷新token
this.router.navigate(['/home/createexam-index']) //登陆成功跳转页面
this.roleType == '1'? this.router.navigate(['/home/createexam-index']) : this.router.navigate(['/home/student-index'])
},(err) => {this.errmsg = err})
}

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

@ -0,0 +1,43 @@
<div class="content">
<div><app-tabbar></app-tabbar></div>
<div class="cneter">
<div class="left">
<div class="headerLeft">
<div>单位列表</div>
<div style="text-align: right;">总分:
<label style="color: #07CDCF;">{{examScore}}</label>
</div>
</div>
<div class="centerLeft" style="background: #F5FDFE;"><div class="overflowText">单位名称</div><div class="overflowText">总分</div></div>
<div class="centerLeft" *ngFor="let item of paperCompanyData" [ngClass]="{'selectPaper': selectPaper.id == item.id}" (click)='togglePaper(item)'>
<div class="overflowText">{{item.companyInfo.name}}</div>
<div class="overflowText">{{item.score}}+{{item.planScore || 0}}</div>
</div>
</div>
<div class="right">
<div class="headerRight">
<label (click)='togglePaperType(1)' [ngClass]="{'selectPaperType': selectPaperType == '1'}">基本信息</label>
<label (click)='togglePaperType(2)' [ngClass]="{'selectPaperType': selectPaperType == '2'}">作战部署</label>
<button (click)='uploadPaper()'>交卷</button>
</div>
<div class="centerRight">
<div class="paperCenter" *ngIf="selectPaperType == '1'">
<mat-accordion>
<mat-expansion-panel>
<mat-expansion-panel-header class="panelHeader">
<label class="mariginRight">基本信息</label>
<label>总分: <label class="mark"> 25</label>分, </label><label>单项<label class="mark">2</label></label>
</mat-expansion-panel-header>
</mat-expansion-panel>
</mat-accordion>
</div>
<div class="paperCenter" *ngIf="selectPaperType == '2'">作战部署</div>
</div>
</div>
</div>
</div>

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

@ -0,0 +1,114 @@
.content{
width: 100%;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
box-sizing: border-box;
.cneter {
flex: 1;
overflow: hidden;
background-color: #F2F5F6;
display: flex;
box-sizing: border-box;
padding: 25px;
>div { background-color: #fff; border-radius: 10px; }
.left {
flex: 20%;
margin-right: 25px;
}
.right {
flex: 80%;
overflow: hidden;
display: flex;
flex-direction: column;
.centerRight {
flex: 1;
overflow: hidden;
}
}
}
}
//文本溢出
.overflowText {
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
//左侧
.headerLeft{
display: flex;
align-items: center;
>div {flex: 1;}
height: 36px;
padding: 0 30px;
margin: 3px 0;
}
.centerLeft {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
>div {flex: 1; text-align: center;}
height: 36px;
padding: 0 25px;
margin: 0 30px;
font-size: 14px;
border-radius: 3px;
}
.selectPaper {
background-color: #07CDCF;
color: #fff;
}
//中间内容区
.headerRight {
width: 100%;
height: 50px;
line-height: 50px;
box-sizing: border-box;
padding-right: 10px;
overflow: hidden;
background-color: #F2F5F6;
button {
width: 80px;
height: 32px;
border-radius: 5px;
background-color: #07CDCF;
color: #fff;
border: none;
outline: none;
float: right;
margin: 9px 25px 0 0;
}
label {
cursor: pointer;
display: inline-block;
width: 120px;
text-align: center;
color: #1E2323;
opacity: 0.5;
}
.selectPaperType {
color: #07CDCF;
opacity: 1;
background-color: #fff;
border-top: 3px solid #07CDCF;
}
}
.mark { color: #FF8678; }
.mariginRight { margin-right: 25px; }
.paperCenter {
width: 100%;
height: 100%;
box-sizing: border-box;
padding: 5px;
overflow-y: auto;
.panelHeader {
background-color: #F5FDFE;
label { display: inline-block; }
}
}

25
src/app/student/examination-details/examination-details.component.spec.ts

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ExaminationDetailsComponent } from './examination-details.component';
describe('ExaminationDetailsComponent', () => {
let component: ExaminationDetailsComponent;
let fixture: ComponentFixture<ExaminationDetailsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ExaminationDetailsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ExaminationDetailsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

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

@ -0,0 +1,117 @@
import { HttpClient } from '@angular/common/http';
import { Component, OnInit } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { MatSnackBar } from '@angular/material/snack-bar';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'app-examination-details',
templateUrl: './examination-details.component.html',
styleUrls: ['./examination-details.component.scss']
})
export class ExaminationDetailsComponent implements OnInit {
constructor(public http:HttpClient,public dialog: MatDialog,public snackBar: MatSnackBar,public route:ActivatedRoute) { }
async ngOnInit(): Promise<void> {
await this.getTestInfo()
this.getUnitPlans()//将试卷的预案考题放进数据中
}
paperData:any //试卷信息
paperCompanyData:any = []; //考生具体考卷
selectPaper:any = {id:null}; //选择当前考卷
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.paperData = data
this.paperData.paperDataInfo.forEach(element => {
element.adjoinData? element.adjoinData = JSON.parse(element.adjoinData) : null
element.basicInfoData? element.basicInfoData = JSON.parse(element.basicInfoData) : null
element.facilityData? element.facilityData = JSON.parse(element.facilityData) : null
element.functionalDivisionData? element.functionalDivisionData = JSON.parse(element.functionalDivisionData) : null
element.importLocationData? element.importLocationData = JSON.parse(element.importLocationData) : null
});
this.paperCompanyData = JSON.parse( JSON.stringify(data.paperDataInfo) ) //具体考卷
this.selectPaper = this.paperCompanyData[0] || {id:null} //当前选择考卷
this.handlePaperData()
resolve()
})
})
}
//处理考卷 数据格式
handlePaperData () {
console.log(this.selectPaper)
}
//切换 选择考卷
togglePaper (e) {
if (this.selectPaper.id != e.id) {
this.selectPaper = e
this.handlePaperData()
}
}
//切换 选择考卷内容
togglePaperType (e) {
if (this.selectPaperType != e) {
this.selectPaperType = e
}
}
//获得单位预案设定
async getUnitPlans(){
for (let index = 0; index < this.paperCompanyData.length; index++) {
const item = this.paperCompanyData[index];
let params = {
paperId : item.paperId,
companyId : item.companyInfo.id
}
await new Promise((resolve,reject)=>{
this.http.get(`/api/PaperPlans`,{params:params}).subscribe(data => {
item.planList = []
item.planList = data
resolve()
})
})
}
this.calculateScore()
}
examScore:any = 0//整个试卷的总分
//计算分数
calculateScore(){
let examScore = 0
let examScore2 = 0
this.paperCompanyData.forEach(item => {
//计算每个单位基本信息部分总分
item.score = item.basicInfoScore + item.adjoinScore + item.importLocationScore + item.functionalDivisionScore + item.facilityScore
//计算整个试卷基本信息总分
examScore += item.score
//计算整个试卷预案试题总分
let x = 0
if(item.planList){
item.planList.forEach(i => {
x += i.score
})
}
item.planScore = x
examScore2 += x
})
//计算总分
this.examScore = examScore + examScore2
console.log(678,this.paperCompanyData)
}
//交卷
uploadPaper () {
console.log('交卷')
}
}

2
src/app/student/student-index/student-index.component.html

@ -24,7 +24,7 @@
<td>{{item.startTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td>{{item.endTime|date:'yyyy-MM-dd HH:mm'}}</td>
<td>{{item.duration}}分钟</td>
<td style="color: #07CDCF;cursor: pointer;">参加考试</td>
<td style="color: #07CDCF;cursor: pointer;" (click)='takeTest(item)'>参加考试</td>
</tr>
</tbody>

12
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-24 10:44:15
* @LastEditTime: 2020-12-24 10:49:54
*/
import { Component, OnInit, ViewChild, Inject,Input } from '@angular/core';
import {HttpClient} from '@angular/common/http'
@ -148,4 +148,14 @@ export class StudentIndexComponent implements OnInit {
}
}
//参加考试
takeTest (e) {
let body = {
name: e.title,
paperId: e.id,
}
this.http.post('/api/Examinations',body).subscribe((data:any)=>{
window.open(`/examinationDetails?paperId=${e.id}&examId=${data.id}`)
})
}
}

3
src/app/student/student.module.ts

@ -52,10 +52,11 @@ import { NzDatePickerModule } from 'ng-zorro-antd/date-picker';
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';
@NgModule({
declarations: [StudentIndexComponent, StudentExamRecordComponent],
declarations: [StudentIndexComponent, StudentExamRecordComponent, ExaminationDetailsComponent],
imports: [
CommonModule,
StudentRoutingModule,

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

@ -0,0 +1,298 @@
<div class="content">
<!-- header头部 -->
<div class="header">
<div class="headerTitle">{{examMsg.conpanyName}}</div>
<div class="headerCenter"> <input type="text" placeholder="请输入考试要点" [(ngModel)]="examMsg.keynote"> </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)="openUploadQuestions()"><mat-icon>open_in_browser</mat-icon>上传</button>
</div>
</div>
<!-- header头部 -->
<!--功能区 -->
<div class="functionalDomain">
<div class='functionalDomainContent' id="functionalDomainContent">
<!-- H5Canvas -->
<app-working-area #canvas [init]='this'></app-working-area>
<!-- H5Canvas -->
<div class="centerBuildingDiv" style="user-select: none;" cdkDrag>
<div class="centerTotal">
<div class="centerTotalHeader overflowText">
<mat-icon cdkDragHandle matTooltip="可移动窗口" matTooltipPosition="above">open_with</mat-icon>
<label (click)='togglebeforeOneCheckedBuilding()'>{{beforeOneCheckedBuilding.name}}</label>
</div>
<div class="everyTotal overflowText" *ngFor="let item of sitePlanData;let key = index"
[ngClass]="{'selectSitePlan': selectSitePlanIndex==key}" (click)='selectSitePlan(item,key)'>
{{item.name}}
</div>
</div>
<div style="width: 5px;height: 100%;opacity: 0;" [hidden]="!beforeOneCheckedBuildingIsShow"></div>
<div class="centerTotal" [hidden]="!beforeOneCheckedBuildingIsShow">
<div class="everyTotal" (click)="checkedBuilding({name:'总平面图'},-1)" [ngClass]="{'buildingbtnchecked': checkedBuildingIndex==-1}">总平面图</div>
<div class="everyTotal overflowText" *ngFor="let item of allBuildings;let key = index" (click)="checkedBuilding(item,key)"[ngClass]="{'buildingbtnchecked': checkedBuildingIndex==key}">
{{item.name}}
</div>
</div>
</div>
<div id="leftDiv" class='functionalDomainLeft publicCss scenarioAssignment' [ngClass]="{'togglePanel': toggleExpandPanel==true}" style="user-select: none;">
<!-- 处置预案 -->
<div class="handlePlan">
<div class="planarGraphHeader" (click)='toggleHandlePlan()'>
<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>
</div>
<!-- 处置预案 -->
<!-- 素材库 -->
<div id="materialBank" *ngIf="examType != 1">
<div class="planarGraphHeader" (click)='toggleMaterial()'>
<mat-icon *ngIf="toggleMaterialBank">keyboard_arrow_up</mat-icon>
<mat-icon *ngIf="!toggleMaterialBank">keyboard_arrow_down</mat-icon>
<label class="overflowText" style="font-weight: 550;">素材库</label>
</div>
<div [hidden]="!toggleMaterialBank" [ngClass]="{'materialBankDIV': pattern}">
<mat-accordion *ngFor="let item of allLibrary" id="panelLibrary">
<mat-expansion-panel (opened)='opened(item)'>
<mat-expansion-panel-header>
<label class="text">{{item.name}}</label>
</mat-expansion-panel-header>
<div class="panelLibraryFlex">
<div class="imgBox" *ngFor="let items of item.images;let key = index" [title]="items.name"
(click)='selectImg(item,items,key)'
[ngClass]="{'selectImg': selectLibrary==item.name && selectImageIndex==key}">
<img [src]="items.imageUrl" onerror="javascript:this.src='../../../assets/images/noImg.png'">
<p class="overflowText">{{items.name}}</p>
</div>
</div>
</mat-expansion-panel>
</mat-accordion>
</div>
</div>
<!-- 素材库 -->
<!-- 消防设施 -->
<div class="planarGraph">
<div class="planarGraphHeader" (click)='togglePlanarGraph()'>
<mat-icon *ngIf="togglePlane">keyboard_arrow_up</mat-icon>
<mat-icon *ngIf="!togglePlane">keyboard_arrow_down</mat-icon>
<label class="overflowText" style="font-weight: 550;">消防设施</label>
</div>
<div [hidden]="!togglePlane">
<!-- 消防列表树 -->
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl">
<mat-tree-node *matTreeNodeDef="let node;" matTreeNodePadding cdkTreeNodePaddingIndent='26' (click)="clickTreeNode(node)" class="treeNode">
<button mat-icon-button disabled></button>
<span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}">
{{node.name}}
</span>
<span *ngIf="node.isTemplate">({{node.children.length}})</span>
<span class="isLookCss" (click)="clickLookItem(node)"><mat-icon [ngClass]="{'icongray': node.isLook == false}">visibility</mat-icon></span>
</mat-tree-node>
<mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding (click)="clickTreeNode(node)"class="treeNode" >
<button mat-icon-button
matTreeNodeToggle
[attr.aria-label]="'toggle ' + node.name">
<mat-icon class="mat-icon-rtl-mirror">
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}}
</mat-icon>
</button>
<span title="{{node.name}}" [ngClass]="{'treeText': !node.isTemplate}">
{{node.name}}
</span>
<span *ngIf="node.isTemplate && node.isNewElement">({{node.children.length}})</span>
<span class="isLookCss" (click)="clickLookItem(node)"><mat-icon [ngClass]="{'icongray': node.isLook == false}">visibility</mat-icon></span>
</mat-tree-node>
</mat-tree>
<!-- 消防列表树 -->
</div>
</div>
<!-- 消防设施 -->
</div>
<div id="rightDiv" class="functionalDomainRight publicCss " [ngClass]="{'togglePanel2': toggleExpandPanelRight==true}" style="user-select: none;">
<!-- 右侧div鼠标拖动div -->
<div style="width: 3px;height: 100%;position: absolute;left: 0;cursor: e-resize;z-index: 1000;" (mousedown)="rightDivMouseDown($event)"></div>
<!-- 属性 -->
<div [ngClass]="{'forbidden': !isEditPattern}" id="property" class="property" style="height: 100%;background-color: white;">
<div class="titleS"><mat-icon>info</mat-icon>属性</div>
<!-- 平面图属性 -->
<div class="siteproperty" style="user-select: none" *ngIf="isShowProperty && isShowAttribute">
<p>面积(平方米)</p>
<div class="siteproperty_size">{{canvasData.selectStorey.area}}</div>
<p>详情</p>
<div class="siteproperty_size">
{{canvasData.selectStorey.details}}
</div>
</div>
<!-- 素材属性 -->
<div class="assetsproperty" style="user-select: none" *ngIf="isShowProperty && !isShowAttribute">
<h3 style="text-align: center;font-weight: 900;">{{assetName}}</h3>
<div *ngIf="canvasAssetObj.InteractiveMode == 0">
<p>宽度(像素)</p>
<input type="text" class="biginput" [(ngModel)]="assetWidth" (input)="assetWidthIunput()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<p>高度(像素)</p>
<input type="text" class="biginput" [(ngModel)]="assetHeight" (input)="assetHeightIunput()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<p>角度</p>
<div style="width: 100%;display: flex;vertical-align: top;height: 22px;">
<input type="number" class="smallinput" [(ngModel)]="sliderValue"
oninput="if(value>360)value=360;if(value<0)value=0;" (input)="assetAngleIunput()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<mat-slider color="primary" min="0" max="360" step="1" style="bottom: 12px;left: 2px;width: 70%;"
[(ngModel)]="sliderValue" (change)="assetAngleIunput()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></mat-slider>
</div>
</div>
<!-- 如果是多点连线 -->
<div *ngIf="canvasAssetObj.InteractiveMode == 1">
<p>厚度</p>
<div style="width: 100%;display: flex;vertical-align: top;height: 22px;">
<input type="number" class="smallinput" [(ngModel)]="sliderValueThickness"
oninput="if(value>999)value=999;if(value<0)value=0;" (input)="assetThicknessIunput()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<mat-slider color="primary" min="0" max="999" step="1" style="bottom: 12px;left: 2px;width: 70%;"
[(ngModel)]="sliderValueThickness" (change)="assetThicknessIunput()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></mat-slider>
</div>
</div>
<p style="margin-top: 4px;margin-bottom: 0px;">是否高亮</p>
<div>
<input class="input" [(ngModel)]="isHighLight" type="checkbox" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<span style="font-size: 14px;">选中高亮</span>
</div>
<div class="colorBigDiv" *ngIf="canvasAssetObj.FillMode == 0">
<div class="colorBigTemplateDiv">
<span>颜色</span>
<div class="colorTemplateDiv" [style]="{'background-color':selectedcolor}">
</div>
</div>
<div class="colorDiv" *ngIf="isEditPattern && pattern && canvasAssetObj.GameMode == 0">
<ul>
<li (click)="selectcolor(item,key)" class="colorLi" *ngFor="let item of colors,let key=index" [style]="{'background-color':item}"></li>
</ul>
</div>
<span style="color: #9c9fa5;font-size: 14px;">透明度</span>
<mat-slider color="primary" min="0" max="100%" step="1" style="left: 1px; width: 55%;min-width: 90px;"
[(ngModel)]="colorDivSliderValue" (change)="colorDivSliderChange()" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></mat-slider>
<span style="color: #9c9fa5;font-size: 12px;">{{colorDivSliderValue}}%</span>
</div>
<div *ngFor="let item of PropertyInfos;index as key ">
<!-- 单行文本 -->
<div *ngIf="item.PropertyType == 0">
<p>{{item.PropertyName}}<span style="font-size: 14px;" *ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
<input type="text" class="biginput" [value]="item.PropertyValue" (input)="assetInputChange(item,$event)" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
</div>
<!-- 多行文本 -->
<div *ngIf="item.PropertyType == 1">
<p>{{item.PropertyName}}<span style="font-size: 14px;" *ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
<textarea class="textarea" name="" id="" [value]="item.PropertyValue" (input)="assetInputChange(item,$event)" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)"></textarea>
</div>
<!-- 数值 -->
<div *ngIf="item.PropertyType == 2">
<p>{{item.PropertyName}}<span style="font-size: 14px;" *ngIf="item.PhysicalUnit">({{item.PhysicalUnit}})</span></p>
<input type="number" class="biginput" [value]="item.PropertyValue" (input)="assetInputChange(item,$event)" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
</div>
<!-- 图片数量 -->
<div *ngIf="item.PropertyType == 4" style="height: 140px;">
<div style="position: relative;width: 100%;height: 21px;margin: 1px 0;">
<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 style="position: relative;;width: 89%;border:1px solid rgb(208, 211, 214);height: 100px;margin: 6px auto;" class="swiper-container">
<div id="viewerjs" class="swiper-wrapper" [ngClass]="{'noImgCss': imagesArr.length == 0}">
<div class="swiper-slide" style="text-align: center;" *ngFor="let img of imagesArr"><img [src]="img.PropertyValue + '?x-oss-process=image/resize,m_fixed,h_100,w_100'" alt="" [attr.data-original]="img.PropertyValue"></div>
</div>
<!-- 如果需要导航按钮 -->
<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">
<mat-icon class="hoverred" (click)="deleteImg()">delete</mat-icon>
</span>
</div>
</div>
</div>
<!-- 方向 -->
<div *ngIf="item.PropertyType == 5" class="selectDiv">
<p style="display: inline-block;">{{item.PropertyName}}</p>
<select (change)="direction(item,$event)" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<option value ="0" [selected]="item.PropertyValue ==0"></option>
<option value ="1" [selected]="item.PropertyValue ==1">西</option>
<option value ="2" [selected]="item.PropertyValue ==2"></option>
<option value ="3" [selected]="item.PropertyValue ==3"></option>
<option value ="4" [selected]="item.PropertyValue ==4">东南</option>
<option value ="5" [selected]="item.PropertyValue ==5">西南</option>
<option value ="6" [selected]="item.PropertyValue ==6">东北</option>
<option value ="7" [selected]="item.PropertyValue ==7">西北</option>
</select>
</div>
<!-- 布尔值 是1或否0 -->
<div *ngIf="item.PropertyType == 6">
<p>{{item.PropertyName}}</p>
<input [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)" [checked]="item.PropertyValue == 1" class="input" type="radio" name="radio" (click)="assetRadioChange(item,'1')"><span></span>
<input [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)" [checked]="item.PropertyValue == 0" class="input" type="radio" name="radio" (click)="assetRadioChange(item,'0')"><span></span>
</div>
<!-- 供给区域 -->
<div *ngIf="item.PropertyType == 7" class="selectDiv">
<p style="display: inline-block;">{{item.PropertyName}}</p>
<select (change)="supplyArea(item,$event)" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<option value ="0" [selected]="item.PropertyValue ==0">全部</option>
<option value ="1" [selected]="item.PropertyValue ==1">高区</option>
<option value ="2" [selected]="item.PropertyValue ==2">中区</option>
<option value ="3" [selected]="item.PropertyValue ==3">低区</option>
<option value ="4" [selected]="item.PropertyValue ==4">高中区</option>
<option value ="5" [selected]="item.PropertyValue ==5">高低区</option>
<option value ="6" [selected]="item.PropertyValue ==6">中低区</option>
</select>
</div>
<!-- 供给类型 -->
<div *ngIf="item.PropertyType == 8" class="selectDiv">
<p style="display: inline-block;">{{item.PropertyName}}</p>
<select (change)="supplyType(item,$event)" value="4" [disabled]="!isEditPattern || (canvasAssetObj.GameMode == 0 && !pattern)">
<option value ="0" [selected]="item.PropertyValue ==0">消火栓</option>
<option value ="1" [selected]="item.PropertyValue ==1">喷淋</option>
<option value ="2" [selected]="item.PropertyValue ==2">水幕</option>
<option value ="3" [selected]="item.PropertyValue ==3">泡沫</option>
<option value ="4" [selected]="item.PropertyValue ==4">消防</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--功能区 -->
</div>

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

@ -0,0 +1,480 @@
@import './panel.scss';
::-webkit-scrollbar {
display: none; /* Chrome Safari */
}
.content {
width: 100%;
height: 100%;
overflow: hidden;
box-sizing: border-box;
padding: 3px;
display: flex;
flex-direction: column;
.buildingbtnchecked{
background-color: #07CDCF;
color: white;
}
}
//header头部
.header {
position: relative;
width: 100%;
height: 46px;
min-height: 46px;
display: flex;
align-items:center;
background-color: #fff;
box-shadow: inset 0px -3px 5px 0px rgb(165, 163, 163);
.headerTitle {
width: 235px;
overflow: hidden;
color: #07CDCF;
box-sizing: border-box;
padding-left: 25px;
font-size: 20px;
font-weight: 550;
}
.headerCenter {
flex: 1;
overflow: hidden;
input {
width: 99%;
height: 30px;
background-color: #e7f0f0;
border-radius: 5px;
}
}
.headerRight {
width: 350px;
overflow: hidden;
box-sizing: border-box;
padding-left: 10px;
button {
font-size: 14px;
color: #07CDCF;
background-color: #fff;
border: none;
outline: none;
cursor:pointer;
}
.mat-icon {
font-size: 22px;
vertical-align: middle;
margin-right: 3px;
}
}
}
//头部操作栏
.headerOperate {
img {
width: 24px;
height: 24px;
vertical-align: middle;
margin-left: 1px;
}
span{
font-size: 18px;
}
flex: 5%;
display: flex;
align-items:center;
min-height: 40px;
box-sizing: border-box;
margin: 3px 0;
background-color: white;
button{
border: 0.5px solid rgb(208, 211, 214);
margin: 0 2px;
}
.editdeletebtn{
display: none;
}
.bigeditdeletebtn:hover{
.editdeletebtn{
display: inline-block;
}
}
}
//功能区
// icon统一样式
.mat-icon {
cursor:pointer;
vertical-align: middle;
}
//左右两侧功能栏 统一样式
.publicCss {
border-radius: 5px;
position: absolute;
height: 100%;
top: 0;
}
.functionalDomain {
flex: 1;
overflow: hidden;
.functionalDomainContent {
position: relative;
width: 100%;
height: 100%;
}
.centerBuildingDiv {
position: absolute;
max-width: 400px;
top: 40px;
left: 240px;
z-index: 150;
display: flex;
}
.functionalDomainLeft {
background-color: #fff;
display: flex;
flex-direction: column;
margin-left: 0px;
transition: margin-left 0.5s;
min-width: 235px;
border: 1px solid #cacdd1;
width: 235px;
left: 0;
z-index: 111;
.leftDragDiv{
position: absolute;
right: 0;
height: 100%;
width: 3px;
z-index: 1000;
cursor: e-resize;
}
}
.functionalDomainRight {
z-index: 111;
margin-right: 0px;
transition: margin-right 0.5s;
border: 1px solid #cacdd1;
width: 235px;
min-width: 235px;
right: 0;
}
//右边导航栏显示隐藏
.togglePanel2 {
margin-right: -2000px;
transition: margin-right 1s;
}
//左侧导航栏显示隐藏
.togglePanel {
margin-left: -2000px;
transition: margin-left 1s;
}
}
//中间建筑/楼层
.centerTotal {
width: 197px;
background-color: #fff;
box-shadow: 0px 0px 5px 3px rgb(165, 163, 163);
border-radius: 5px;
box-sizing: border-box;
padding: 5px 0;
.centerTotalHeader {
height: 30px;
line-height: 30px;
box-sizing: border-box;
padding: 0 5px;
font-size: 14px;
.mat-icon:hover {cursor: move;;}
.mat-icon {
font-size: 24px;
color: rgb(175, 164, 164);
margin: 0 30px 0 10px;
}
}
.everyTotal {
width: 100%;
height: 30px;
line-height: 30px;
box-sizing: border-box;
padding: 0 5px;
margin: 3px 0;
cursor:pointer;
font-size: 16px;
}
}
//中间建筑/楼层
//右边操作栏
.titleS{
width: 100%;
height: 35px;
line-height: 35px;
padding-left: 5px;
box-sizing: border-box;
color: #07CDCF;
.mat-icon {vertical-align: middle; margin-right: 5px; font-size: 22px;}
}
input { border: none; outline: none; background-color: #d6dddf; box-sizing: border-box; padding-left: 5px; }
//右侧属性
.property{
display: flex;
flex-flow: column;
.siteproperty{
height: 100%;
overflow-y: auto;
p{
color: #9c9fa5;
padding-left: 5px;
}
.siteproperty_size{
background-color: #F2F5F6;
width: 93%;
margin: 0 auto;
border-radius: 3px;
min-height: 21px;
}
.rightAttribute{
width: 12%;
height: 99.5%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
border: 2px solid #464646;
}
}
.assetsproperty{
overflow-y: auto;
height: 100%;
p{
color: #9c9fa5;
margin:1px 0 3px 8px;
font-size: 14px;
}
span{
font-size: 15px;
}
input{
height: 24px;
border-radius: 3px;
}
.biginput{
display: block;
width: 88%;
margin: 0 auto;
}
.smallinput{
display: block;
width: 19%;
margin-left: 8px;
}
.textarea{
display: block;
width: 88%;
height: 50px;
margin: 0 auto;
}
.swiper-button-next{
right: 6px;
}
.swiper-button-prev{
left: 6px;
}
.swiper-container{
// --swiper-theme-color: #ff6600;/* 设置Swiper风格 */
// --swiper-navigation-color: #00ff33;/* 单独设置按钮颜色 */
--swiper-navigation-size:20px;/* 设置按钮大小 */
}
.hoverred:hover{
color: rgb(187, 28, 28);
}
.selectDiv{
height: 21px;
position: relative;
margin-bottom: 5px;
select{
width: 98px;
height: 22px;
vertical-align: middle;
position: absolute;
right: 10px;
top: 1px;
border: 1px solid rgb(208, 211, 214);
border-radius: 2px;
}
}
.colorBigDiv{
width: 88%;
margin-left: 8px;
.colorBigTemplateDiv{
span{
color: #9c9fa5;
font-size: 14px;
height: 26px;
line-height: 26px;
}
.colorTemplateDiv{
width: 65%;
height: 22px;
display: inline-block;
vertical-align: middle;
margin-left: 26px;
}
}
.colorDiv{
.colorLi{
width: 24px;
height: 24px;
list-style: none;
float: left;
border: 2px solid white;
}
.coloractive{
border: 2px solid black;
}
}
}
}
}
//右侧消防要素
.firecategories{
position: relative;
display: flex;
flex-flow: column;
.firecategoriesTree{
overflow-y: auto;
height: 100%;
}
}
// 解决轮播图蓝框问题
div:focus {
outline: none;
}
//没有图片时显示无图片背景图
.noImgCss{
background: url(../../../assets/images/noImg.png) no-repeat center center;
background-size: 88% 100%;/*按比例缩放*/
}
.input{
width: 18px;
height: 18px;
vertical-align: middle;
margin-left: 9px;
margin-right: 3px;
}
// tree
.isLookCss{
margin-left: auto;
color: #07CDCF;
.icongray{
color: #D9D0DC;
}
}
.mat-tree-node{
padding-right: 3px;
min-height: 30px;
height: 30px;
font-size: 12px;
cursor: pointer;
}
.treeNode:hover{
background-color: #ccebf8;
}
.isLookPattern{
display: none;
}
.treeText{
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
width: 65px;
}
.bigBox{
width: 700px;
height: 40px;
position: absolute;
overflow: hidden;
right: 0;
}
.weatherBox{
height: 40px;
width: 700px;
line-height: 40px;
position: absolute;
right: 0;
transition: right linear .5s;
.openbtn{
font-size: 45px;
height: 45px;
width: 40px;
}
.name{
font-size: 16px;
vertical-align: middle;
margin-left: 3px;
}
input{
width: 140px;
height: 22px;
margin-left: 3px;
}
select{
width: 96px;
height: 25px;
margin-left: 3px;
vertical-align: middle;
}
}
.open{
right: 0px;
}
.close{
right:-622px;
}
.bottomCss{
position: absolute;
left: 232px;
right: 0px;
bottom: 0;
height: 158px;
width: auto;
z-index: 111;
background-color: white;
border: 1px solid #464646;
.dragDiv{
width: 100%;
height: 3px;
position: absolute;
top: 0;
z-index: 111;
cursor: n-resize;
}
.title{
height: 35px;
background-color: #464646;
div{
background-color: #464646;
float: left;
width: 80px;
color: white;
font-size: 13px;
padding-left: 5px;
cursor: pointer;
}
.detailsAndattentBtn{
background-color: #595959;
}
}
.body{
textarea{
width: 100%;
border-radius: 0px;
}
}
}

25
src/app/ui/collection-tools-examinee/collection-tools.component.spec.ts

@ -0,0 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CollectionToolsComponent } from './collection-tools.component';
describe('CollectionToolsComponent', () => {
let component: CollectionToolsComponent;
let fixture: ComponentFixture<CollectionToolsComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CollectionToolsComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CollectionToolsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

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

File diff suppressed because it is too large Load Diff

30
src/app/ui/collection-tools-examinee/examinationQuestions.html

@ -0,0 +1,30 @@
<div style="min-width: 240px;" >
<div style="text-align: center;font-weight: 550;">消防设施考题设定</div>
<div id="nodeTree" style="max-height: 300px;overflow-y: auto; margin: 25px 0;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
[nzData]="renderData"
nzCheckable
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)"
(nzCheckBoxChange)="nzEvent($event)"
[nzTreeTemplate]="nzTreeTemplate"
>
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
<label class="overflowText textNode">{{node.origin.name || node.origin.Name}}</label>
</div>
</ng-template>
<!-- 消防列表树 -->
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>

346
src/app/ui/collection-tools-examinee/examinationQuestions.ts

@ -0,0 +1,346 @@
import { Component, OnInit, Inject, ViewChild } 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';
import { NzFormatBeforeDropEvent, NzFormatEmitEvent,NzTreeComponent } from 'ng-zorro-antd/tree';
import { ActivatedRoute } from '@angular/router';
@Component({
selector: 'dialog-examination-questions',
templateUrl: './examinationQuestions.html',
styleUrls: ['./collection-tools.component.scss',]
})
export class examinationQuestionsExaminee {
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;
defaultCheckedKeys = []; //指定选中复选框的树节点 key值
defaultExpandedKeys = []; //展开指定的树节点 key值
defaultSelectedKeys = []; //指定选中的树节点 key值
renderData:any
ngOnInit(): void {
this.renderData = this.data.treeData
if(JSON.parse(sessionStorage.getItem('tree型数据')) && JSON.parse(sessionStorage.getItem('tree型数据'))[this.data.buildFloorData.floorData.id]){
this.defaultCheckedKeys = JSON.parse(sessionStorage.getItem('tree型数据'))[this.data.buildFloorData.floorData.id]
}
this.data.treeData.forEach(element => {
if(element.isTemplate){
element.isLeaf = false
}else{
element.isLeaf = true
}
if(element.children && element.children.length != 0){
element.children.forEach(ele => {
if(ele.isTemplate){
ele.isLeaf = false
}else{
ele.isLeaf = true
}
if(ele.children && ele.children.length != 0){
ele.children.forEach(item => {
if(item.isTemplate){
item.isLeaf = false
}else{
item.isLeaf = true
}
});
}})
}
})
}
nzEvent($event){
console.log($event)
}
//提交
submit () {
let oldTreeData = this.nzTreeComponent.getCheckedNodeList()
let alltreedata = JSON.parse(sessionStorage.getItem("tree型数据"))
let keyArr = []
oldTreeData.forEach(element => {
keyArr.push(element.origin.key)
})
if(alltreedata){
//如果已经保存过当前楼层则替换
alltreedata[this.data.buildFloorData.floorData.id] = keyArr
sessionStorage.setItem('tree型数据',JSON.stringify(alltreedata))
}else{
alltreedata = {}
alltreedata[this.data.buildFloorData.floorData.id] = keyArr
sessionStorage.setItem('tree型数据',JSON.stringify(alltreedata))
}
let checkList = [] //只存真实素材
for (const key in this.data.oldRealData.data) {
let element = this.data.oldRealData.data[key]
let isChecked = (this.nzTreeComponent.getTreeNodeByKey(key)).isChecked
isChecked? checkList.push(element) : null
}
//存储真实素材数据
let basicAssetsId = []
if(checkList && checkList.length != 0){
checkList.forEach(item => {
basicAssetsId.push(item.TemplateId)
})
}
basicAssetsId = Array.from(new Set(basicAssetsId))
console.log(123,this.data.buildFloorData)
let obj = {
name:this.data.buildFloorData.buildingData.name + '-' + this.data.buildFloorData.floorData.name,
key:this.data.buildFloorData.floorData.id,
buildingId:this.data.buildFloorData.buildingData.id,
children:checkList,
basicAssetsId:basicAssetsId
}
let data = JSON.parse(sessionStorage.getItem("消防设施"+sessionStorage.getItem('paperId')))
if(data && data.length != 0){
console.log(1)
let ind = null
data.forEach((item,index) => {
if(item.key == obj.key){
ind = index + 1
}
})
if(ind){
if(checkList.length != 0){
data[ind - 1].children = checkList
}else{
data.splice(ind - 1,1)
}
}else{
data.push(obj)
}
sessionStorage.setItem("消防设施"+sessionStorage.getItem('paperId'),JSON.stringify(data))
}else{
console.log(2)
data = []
data[0] = obj
sessionStorage.setItem("消防设施"+sessionStorage.getItem('paperId'),JSON.stringify(data))
}
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('当层消防设施考题设置完成','确定',config);
this.dialogRef.close()
}
}
//上传按钮
@Component({
selector: 'dialog-upload-questions',
templateUrl: './uploadQuestions.html',
styleUrls: ['./collection-tools.component.scss',]
})
export class uploadQuestionsExaminee {
constructor(private http:HttpClient, public dialog: MatDialog, public snackBar: MatSnackBar, public dialogRef: MatDialogRef<any>,
@Inject(MAT_DIALOG_DATA) public data,private route:ActivatedRoute) {}
defaultCheckedKeys = []; //指定选中复选框的树节点 key值
defaultExpandedKeys = []; //展开指定的树节点 key值
defaultSelectedKeys = []; //指定选中的树节点 key值
renderData:any
ngOnInit(): void {
let data = JSON.parse(sessionStorage.getItem("消防设施"+sessionStorage.getItem('paperId')))
data ? data.forEach(item => {
let realData = item.children
item.children = this.processingData(this.data.allFireElements,realData)
}) :null
this.renderData = data
this.getProfiles()
this.nodeInit()
}
//处理数据 将消防要素模板与真实素材结合
processingData(allFireElements,realData){
allFireElements[allFireElements.length-1].children = []
realData.forEach(item => {
item.isLeaf = true
let noMatch = allFireElements.find( every=> every.id === item.FireElementId )
if (!noMatch) {
allFireElements[allFireElements.length-1].children.push(item)
}
})
let treeData = [] //tree型 处理完成后的数据
allFireElements.forEach(element => {
element.key = element.id
element.name != '其他' ? element.children = [] : null
if(realData){
realData.forEach(item => {
if(element.id == item.FireElementId){
element.children.push(item)
}
})
}
allFireElements.forEach(item => { if (item.parentId == element.id) {element.children.push(item)} });
});
allFireElements.forEach(element => {
if (!element.parentId) { treeData.push(element) }
});
function recursionFilterEmpty(originalList, result) {
      for(let i = 0, length = originalList.length; i < length; i++) {
          const item = originalList[i];
          if (item.PropertyInfos) {
              // 最内层
              result.push(item);
          } else if (item.children && item.children.length) {
              const newChildren = [];
              // 递归调用,底层的真实数据会全部 push  newChildren 
              recursionFilterEmpty(item.children, newChildren);
              if (newChildren.length) {
                  // 替换原始数据
                  item.children = newChildren;
                  // 子项有真实的数据,就保留这一项
                  result.push(item);
              } // 如果没有这一项就会被删除
          }
      }
  }
  function filterEmpty(listData) {
      const result = [];
      recursionFilterEmpty(listData, result);
      return result;
  }
return filterEmpty(treeData)
}
//获取登录账号的个人资料
Profiles:any
getProfiles(){
this.http.get('/api/ExamAccounts/Profiles').subscribe(data => {
this.Profiles = data
})
}
nodeTreeData:any = []; //处置节点tree
//节点初始化
nodeInit () {
let treeData = []
this.data.node.forEach(element => {
element.title = element.name //name
element.key = element.id //id
element.children = [] //children
if (element.sitePlanId || element.buildingAreaId) { //是数据节点
element.isLeaf = true
element.isDataNode = true
} else { //不是数据节点
element.isLeaf = false
element.isDataNode = false
}
this.data.node.forEach(item=>{
item.parentId === element.id? element.children.push(item) : null
})
});
this.data.node.forEach(element=>{
!element.parentId? treeData.push(element) : null
})
this.nodeTreeData = [...treeData]
}
nzEvent($event){
console.log($event)
}
//上传
submit () {
console.log(this.data.question)
let body:any = {
id: this.route.snapshot.queryParams.paperplanId,
paperId: sessionStorage.getItem('paperId'),
planComponentId: sessionStorage.getItem('planId'),
examPlanType: this.route.snapshot.queryParams.openType == 1 ? 0 : 1,
creatorId: this.Profiles.id,
modifiedTime: new Date(),
isPublic: true,
title: this.route.snapshot.queryParams.planName,
mainPoint: this.data.question.keynote,
score: 0,
examFacilityAssetsData: sessionStorage.getItem('消防设施' + sessionStorage.getItem('paperId')) ? sessionStorage.getItem('消防设施' + sessionStorage.getItem('paperId')) : null,
examDisposalNodesData: sessionStorage.getItem('examNodeList') ? sessionStorage.getItem('examNodeList') : null,
companyId:sessionStorage.getItem('companyId')
}
this.http.put(`/api/PaperPlans/${this.route.snapshot.queryParams.paperplanId}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('设置完成,页面将于一秒后关闭','确定',config);
setTimeout(() => {
window.close()
}, 1000);
})
}
}
//保存考的节点
@Component({
selector: 'dialog-disposal-nodes',
templateUrl: './uploadDisposalNodes.html',
styleUrls: ['./collection-tools.component.scss',]
})
export class uploadDisposalNodesExaminee {
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;
ngOnInit(): void {
this.treeData = [...this.data.treeData]
}
treeData:any = []; //tree
//提交 保存考试节点
submit () {
let checkList = []
this.data.oldTreeData.forEach(element => {
let isChecked = (this.nzTreeComponent.getTreeNodeByKey(element.id)).isChecked
isChecked? checkList.push(element) : null
});
let galfList = this.nzTreeComponent.getHalfCheckedNodeList()
this.data.oldTreeData.forEach(element => {
galfList.forEach(elements => {
element.id == elements.origin.id? checkList.push(element) : null
});
});
if (checkList.length) {
this.dialogRef.close(checkList);
} else {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('请选择节点','确定',config);
}
}
}

291
src/app/ui/collection-tools-examinee/panel.scss

@ -0,0 +1,291 @@
.matIcons {
color: #8E909F;
}
//平面图 素材库 公共样式 头部
.planarGraphHeader{
height: 35px;
min-height: 35px;
cursor: pointer;
display: flex;
flex-direction: row;
align-items: center;
padding: 0 24px;
// border-radius: 5px;
font-family: Roboto, "Helvetica Neue", sans-serif;
font-size: 15px;
font-weight: 400;
color: #fff;
background: #07CDCF;
}
//平面图头部字体图标样式
.hover {
width: 18px;
height: 18px;
margin-left: 90px;
border: 1px solid #999;
border-radius: 3px;
.mat-icon {font-size: 18px; color: #999;}
}
.hover:hover {
background-color: #4DA5FA;
.mat-icon {color: #fff;}
}
//平面图
.sitePlanContent {
position: relative;
width: 100%;
height: 35px;
line-height: 35px;
box-sizing: border-box;
padding: 0 10px 0 25px;
.mat-icon {
font-size: 20px;
}
}
//火源/力量 图标
.fireForce {
display: block;
float: right;
margin: 8px 5px 0 0;
width: 40px;
height: 20px;
line-height: 20px;
text-align: center;
position: relative;
overflow: hidden;
img{
width: 20px;
height: 20px;
}
}
//替换底图 inputfile
.a-upload {
display: block;
float: right;
margin: 8px 18px 0 0;
width: 20px;
height: 20px;
line-height: 20px;
text-align: center;
position: relative;
overflow: hidden;
input {
position: absolute;
width: 20px;
height: 20px;
left: 0;
top: 0;
opacity: 0;
}
}
.a-upload:hover {
.mat-icon {
color: #fff;
}
}
//上传底图 inputfile
#a-uploadImg {
display: block;
width: 300px;
height: 170px;
position: fixed;
top: 40%;
left: 48%;
overflow: hidden;
border-radius: 5px;
border: 1px solid #999;
z-index: 999;
input {
position: absolute;
width: 300px;
height: 170px;
left: 0;
top: 0;
opacity: 0;
}
img {
width: 100%;
height: auto;
}
}
#a-uploadImg:hover {
border: 5px solid skyblue;
}
//hover时显示右边操作栏
.sitePlanContent:hover {
#rightOperate {
display: block;
}
}
//右边操作栏
#rightOperate{
width: 50px;
height: 100px;
position: absolute;
top: -32px;
right: -48px;
z-index: 99999;
border-radius: 0 100px 100px 0;
background-color: #F0F4F7;
// #F0F4F7 cdced1
display: none;
.functionButton {
height: 25%;
line-height: 25px;
}
.bigFunctionIcon {
font-size: 24px;
}
.functionIcon {
color: #999;
}
.functionIcon:hover {
color: #4DA5FA;
}
}
//处置预案 素材库 公用div
.publiclBankPlan {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
padding-bottom: 10px;
}
// 基本信息/想定作业 切换
.scenarioAssignment {
overflow-y: auto;
}
.selectEditMode {
flex: 1;
display: flex;
flex-direction: column;
overflow: hidden;
}
.materialBankDIV{
flex: 1;
overflow-x: hidden;
overflow-y: auto;
}
// 基本信息/想定作业 切换
//处置预案
#terrNodePublic {
height: 35px;
line-height: 35px;
display: flex;
.textNode {flex: 1;}
}
//字体图标
.planIconDiv {
display: inline-block;
.mat-icon{
font-size: 20px;
width: 20px;
height: 20px;
color: #666;
margin-right: 3px;
}
}
.mat-expansion-panel-header {
height: 40px !important;
}
//素材库溢出隐藏
#materialBank {
margin: 1px 0;
}
//素材库图片flex
.mat-expansion-panel-header {background-color: #d6f4f5;}
#panelLibrary .text{
box-sizing: border-box;
margin-left: 10px;
}
.panelLibraryFlex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between; /* 水平居中 */
.imgBox {
width: 70px;
height: 100px;
display: inline-block;
text-align: center;
border-radius: 3px;
margin: 5px 0;
img {
width: 70px;
height: auto;
max-height: 70px;
cursor:pointer;
}
p {
font-size: 12px;
cursor:pointer;
}
}
}
//文本溢出
.overflowText {
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
// 楼层/区域 是避难层时
.isRefugeStorey {
color: #FF8678;
background-color: #fff;
}
//选中平面图时
.selectSitePlan {
color: #fff;
background-color: #07CDCF;
}
//选中素材库图片时
.selectImg {
color: #fff;
background-color: #4DA5FA;
}
//选中 处置节点时
.selectanelPoint {
background-color: #F4C235;
}
//左侧功能区弹出框样式
.keyMargin {
width: 100%;
margin: 5px 0;
.mat-form-field {
width: 100%;
}
}
.submitBottom {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between; /* 水平居中 */
}
.functionalDomainContent {
width: 300px;
height: 100%;
textarea {
border-radius: 5px;
border: 1px solid #999;
width: 100%;
height: 120px;
resize:none;
}
}

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

@ -0,0 +1,301 @@
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' //引入服务
// 保存想定作业第一个弹窗
@Component({
selector: 'dialog-overview-example-dialog',
templateUrl: 'saveOne.html',
styleUrls: ['./collection-tools.component.scss']
})
export class saveOneDialogExaminee {
constructor(
private http:HttpClient,
public dialog: MatDialog,
public snackBar: MatSnackBar,
public dialogRef: MatDialogRef<saveOneDialogExaminee>,
@Inject(MAT_DIALOG_DATA) public data) {}
onNoClick(): void {
this.dialogRef.close()
}
allDisposalNode = this.data.allDisposalNode
saveType(type){
this.dialogRef.close()
const dialogRef = this.dialog.open(saveTwoDialogExaminee, {
data: {type: type,
allDisposalNode: this.data.allDisposalNode,
selectedBuildingData:this.data.selectedBuildingData,
selectedSiteData:this.data.selectedSiteData,
siteOrbuilding:this.data.siteOrbuilding,
disasterId:this.data.disasterId}
});
dialogRef.afterClosed().subscribe(result => {
});
}
}
// 保存想定作业第二个弹窗
@Component({
selector: 'dialog-overview-example-dialog',
templateUrl: 'saveTwo.html',
styleUrls: ['./collection-tools.component.scss']
})
export class saveTwoDialogExaminee {
constructor(
private http:HttpClient,
public dialogRef: MatDialogRef<saveTwoDialogExaminee>,
public canvasData: CanvasShareDataService,
public snackBar: MatSnackBar,
@Inject(MAT_DIALOG_DATA) public data) {}
type = this.data.type
allDisposalNode = this.data.allDisposalNode
allPlanDisposalNode = []
allRootDisposalNode = [{name:"根节点",id:null}]
allDisposalNodeChild = []
ngOnInit(): void {
//所有非数据节点
this.allDisposalNode.forEach(item => {
if(!item.sitePlanId && !item.buildingAreaId){
this.allPlanDisposalNode.push(item)
}
})
//所有一级节点
this.allDisposalNode.forEach(item => {
if(!item.parentId){
this.allRootDisposalNode.push(item)
}
})
this.allDisposalNodeChild = JSON.parse(JSON.stringify(this.allDisposalNode))
this.allDisposalNodeChild.forEach(item => {
item.children = []
this.allDisposalNodeChild.forEach(i => {
if(i.parentId == item.id){
item.children.push(i)
}
})
})
}
onNoClick(): void {
this.dialogRef.close();
}
nodeItem
itemChildNum = 0 //点击处置节点子数据节点的数量
clickNode(item){
console.log(item)
this.nodeItem = item
this.allDisposalNodeChild.forEach(item => {
if(item.id == this.nodeItem.id){
this.itemChildNum = item.children.length
}
})
}
selectedBuildingData = this.data.selectedBuildingData
selectedSiteData = this.data.selectedSiteData
onSubmit(value,type){
// console.log(type)
let name = this.selectedBuildingData.name + '-' + this.selectedSiteData.name
//如果保存到已有节点
var postdata = {
id: "",
name: name,
level: 0,
order: this.itemChildNum,
description: "",
notes: "",
weather: null,
airTemperature: null,
windDirection: null,
windScale: null,
imageNames: null,
imageUrls: null,
parentId: this.nodeItem ? this.nodeItem.id : null,
examDisasterId: this.data.disasterId,
ExamPlanComponentId: sessionStorage.getItem('planId') || '',
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
}
if(type == 'old'){
let istrue = this.canvasData.findDisposalNode(this.nodeItem.id,name)
let putdata = this.nodeItem
putdata.weather = this.canvasData.selectPanelPointBaseData.weather
putdata.airTemperature = Number(this.canvasData.selectPanelPointBaseData.airTemperature)
putdata.windScale = Number(this.canvasData.selectPanelPointBaseData.windScale)
putdata.windDirection = Number(this.canvasData.selectPanelPointBaseData.windDirection)
putdata.description = this.canvasData.selectPanelPointBaseData.description
putdata.notes = this.canvasData.selectPanelPointBaseData.notes
if(istrue){//如果该处置节点下已有同名数据节点 则只修改 2个接口
new Promise((resolve,reject)=>{
// this.http.put(`/api/DisposalNodes/${value.nodeId}`,putdata).subscribe(data => {
resolve("更新处置节点成功,将天气 节点详情等信息保存到点击的节点")
// })
}).then((values)=>{
this.canvasData.sendMessage('send a message');//发布一条消息
// 保存平面图数据到当前节点
let postdata =JSON.parse(JSON.stringify(this.canvasData.selectPanelPoint))
postdata.Data = JSON.stringify(postdata.Data)
this.http.post(`/api/ExamDisposalNodeData`,postdata).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('保存成功','确定',config)
},err=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('保存失败','确定',config)
})
this.dialogRef.close();
this.canvasData.sendMessage('send a message');//发布一条消息
})
}else{//需要3个接口
new Promise((resolve,reject)=>{
// this.http.put(`/api/DisposalNodes/${value.nodeId}`,putdata).subscribe(data => {
resolve("更新处置节点成功,将天气 节点详情等信息保存到点击的节点")
// })
}).then((values)=>{
console.log(values)
postdata.level = putdata.level + 1
new Promise((resolve,reject) => {
this.http.post(`/api/ExamDisposalNodes`,postdata).subscribe(data => {
resolve(data)
})
}).then((data:any)=>{
console.log(7788,data)
let objData = {
id: "",
data: JSON.stringify(this.canvasData.selectPanelPoint.Data) || null,
version: this.canvasData.selectPanelPoint.Version || "2.0",
ExamDisposalNodeId: data.id,
ExamPlanComponentId: sessionStorage.getItem("planId"),
}
this.http.post(`/api/ExamDisposalNodeData`,objData).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('保存成功','确定',config)
},err=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('保存失败','确定',config)
})
this.dialogRef.close();
this.canvasData.sendMessage('send a message');//发布一条消息
})
})
}
}else{//如果保存到新建节点
let dispositionNodeData //处置节点data
let order
let oneLevelNum = []
//将order赋值为所有一级节点最后一个+1
this.allDisposalNode.forEach(item => {
if(!item.parentId){
oneLevelNum.push(item)
}
})
if(oneLevelNum.length == 0){
order = 0
}else{
order = oneLevelNum[oneLevelNum.length - 1].order + 1
}
if(this.nodeItem){//如果点击了下拉选择框
if(this.nodeItem.id != null){
this.allDisposalNodeChild.forEach(item => {
if(item.id == this.nodeItem.id){
order = item.children.length
}
})
}
}
dispositionNodeData = {
id: null,
name: value.name,
level: this.nodeItem && this.nodeItem.id != null ? this.nodeItem.level + 1 : 0,
order: order,
description: null,
notes: null,
weather: null,
airTemperature: 0,
windDirection: 0,
windScale: 0,
imageNames: null,
imageUrls: null,
parentId: this.nodeItem ? this.nodeItem.id : null,
examDisasterId: this.data.disasterId,
ExamPlanComponentId: sessionStorage.getItem('planId') || '',
companyId: null,
sitePlanId: null,
buildingId: null,
buildingAreaId: null
}
dispositionNodeData.weather = this.canvasData.selectPanelPointBaseData.weather
dispositionNodeData.airTemperature = Number(this.canvasData.selectPanelPointBaseData.airTemperature)
dispositionNodeData.windScale = Number(this.canvasData.selectPanelPointBaseData.windScale)
dispositionNodeData.windDirection = Number(this.canvasData.selectPanelPointBaseData.windDirection)
dispositionNodeData.description = this.canvasData.selectPanelPointBaseData.description
dispositionNodeData.notes = this.canvasData.selectPanelPointBaseData.notes
//1.先创建一个处置节点 然后 .then 2.创建数据节点到刚创建的处置节点 3.然后拿着创建好的数据节点的id 将平面图data保存
new Promise((resolve,reject) => {
this.http.post("/api/ExamDisposalNodes",dispositionNodeData).subscribe((data:any) => {
resolve(data.id)
})
}).then((id) => {
let dataNodeData
console.log("qnm",id)
new Promise((resolve,reject) => {
postdata.parentId = id
postdata.level = dispositionNodeData.level + 1
this.http.post("/api/ExamDisposalNodes",postdata).subscribe((data:any) => {
resolve(data)
})
}).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"),
}
this.http.post(`/api/ExamDisposalNodeData`,objData).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('保存成功','确定',config)
},err=>{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('保存失败','确定',config)
})
this.dialogRef.close();
this.canvasData.sendMessage("send a message")
})
})
}
}
}

5
src/app/ui/collection-tools-examinee/saveOne.html

@ -0,0 +1,5 @@
<div style="text-align: center; margin-bottom: 25px; font-weight: 550;">处置节点保存</div>
<div style="display: flex;">
<button mat-stroked-button style="margin-right: 15px; color: #fff; background-color: #07CDCF; border: none;" (click)="saveType('new')">新建节点并保存</button>
<button mat-stroked-button style="margin-left: 15px; color: #fff; background-color: #FF8678; border: none;" (click)="saveType('old')">保存到已有节点</button>
</div>

53
src/app/ui/collection-tools-examinee/saveTwo.html

@ -0,0 +1,53 @@
<div *ngIf="type == 'new'">
<div mat-dialog-title>新增节点</div>
<div>
<form (ngSubmit)="onSubmit(form.value,'new')" #form="ngForm" class="example-container">
<div mat-dialog-content>
<mat-form-field>
<input type="text" matInput ngModel
required name="name" placeholder="节点名称" autocomplete="off">
</mat-form-field>
</div>
<div mat-dialog-content>
<mat-form-field>
<mat-select [(value)]="allRootDisposalNode[0].name" required placeholder="父节点名称">
<mat-option *ngFor="let item of allRootDisposalNode" [value]="item.name" (click)="clickNode(item)">
{{item.name}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<div mat-dialog-actions>
<button mat-raised-button color="primary" type="submit"
[disabled]="!form.form.valid">
确定
</button>
<button mat-raised-button mat-dialog-close>取消</button>
</div>
</form>
</div>
</div>
<div *ngIf="type == 'old'">
<div mat-dialog-title>保存到已有节点</div>
<div>
<form (ngSubmit)="onSubmit(form.value,'old')" #form="ngForm" class="example-container">
<div mat-dialog-content>
<mat-form-field>
<mat-select required ngModel placeholder="父节点名称" name="nodeId">
<mat-option *ngFor="let item of allPlanDisposalNode" [value]="item.id" (click)="clickNode(item)">
{{item.name}}
</mat-option>
</mat-select>
</mat-form-field>
</div>
<div mat-dialog-actions>
<button mat-raised-button color="primary" type="submit"
[disabled]="!form.form.valid">
确定
</button>
<button mat-raised-button mat-dialog-close>取消</button>
</div>
</form>
</div>
</div>

14
src/app/ui/collection-tools-examinee/uploadDisposalNodes.html

@ -0,0 +1,14 @@
<div id="disposalNodeTree">
<div style="max-height: 500px;overflow-x: hidden;overflow-y: auto;margin-bottom: 25px;width: 330px;padding-right: 10px;">
<nz-tree #nzTreeComponent [nzData]="treeData" nzCheckable nzMultiple [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 style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>

51
src/app/ui/collection-tools-examinee/uploadQuestions.html

@ -0,0 +1,51 @@
<div style="min-width: 260px;" id="uploadfiretree">
<div style="text-align: center;font-weight: 550;">上传</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考试要点</div>
<div style="margin-bottom: 25px;">
<textarea style="width: 100%;background-color: #dfe0e0;border: none;outline: none;height: 50px;border-radius: 5px;resize: none;" placeholder="请填写考试要点" [(ngModel)]="data.question.keynote"></textarea>
</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核消防设施</div>
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
[nzData]="renderData"
nzMultiple
[nzCheckedKeys]="defaultCheckedKeys"
[nzExpandedKeys]="defaultExpandedKeys"
[nzSelectedKeys]="defaultSelectedKeys"
(nzClick)="nzEvent($event)"
(nzExpandChange)="nzEvent($event)"
(nzCheckBoxChange)="nzEvent($event)"
[nzTreeTemplate]="nzTreeTemplate"
>
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
<label class="overflowText textNode">{{node.origin.name || node.origin.Name}}</label>
</div>
</ng-template>
<!-- 消防列表树 -->
</div>
<div style="padding-left: 10px; font-size: 14px; font-weight: 550;margin: 5px 0;">考核处置节点</div>
<div style="max-height: 200px;overflow-y: auto;margin-bottom: 25px;">
<!-- 消防列表树 -->
<nz-tree
#nzTreeComponent
[nzData]="nodeTreeData"
nzMultiple
[nzTreeTemplate]="nzTreeTemplate"
>
</nz-tree>
<ng-template #nzTreeTemplate let-node let-origin="origin">
<div class="treeNodeTemplate">
<label class="overflowText textNode">{{node.origin.name || node.origin.Name}}</label>
</div>
</ng-template>
<!-- 消防列表树 -->
</div>
<div style="text-align: center;">
<button mat-stroked-button style="margin-right: 15px;border: none;background: #07CDCF;color: #fff;" (click)='submit()'>确定</button>
<button mat-stroked-button style="margin-left: 15px;border: none;background: #dfe0e0;" mat-dialog-close>取消</button>
</div>
</div>

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

@ -903,7 +903,6 @@ export class CollectionToolsComponent implements OnInit {
let data = JSON.parse(JSON.stringify(this.allFireElements)) //所有消防要素模板
console.log(data)
let treeData = [] //tree型 处理完成后的数据
data.forEach(element => {
element.key = element.id
element.isTemplate = true //添加模板标识
@ -964,7 +963,7 @@ export class CollectionToolsComponent implements OnInit {
  }
console.log(filterEmpty(treeData))
// console.log(filterEmpty(treeData))
this.dataSource.data = filterEmpty(treeData)
this.treeControl.expandAll()
@ -1096,7 +1095,7 @@ export class CollectionToolsComponent implements OnInit {
let treeData = JSON.parse( JSON.stringify(this.dataSource.data) )
let nodes = JSON.parse( JSON.stringify( JSON.parse(sessionStorage.getItem('examNodeList')) ) )
if (nodes) {
let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ), node: nodes }
let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ), node: nodes ,allFireElements:this.allFireElements}
let dialogRef = this.dialog.open(uploadQuestions,{data});
} else {
const config = new MatSnackBarConfig();
@ -1126,9 +1125,11 @@ export class CollectionToolsComponent implements OnInit {
// storeyData.data[key] = companyBuildingData.data[key]
// }
// }
for(let key in storeyData.data){ //筛选数据 没有匹配全部放入到 其他 数组
console.log(566,storeyData.data)
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 )
//没有匹配全部放入到 其他 数组
if (!noMatch) {
this.allFireElements[this.allFireElements.length-1].children.push(storeyData.data[key])
}

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

@ -55,9 +55,14 @@ export class examinationQuestions {
}
})
}
nzEvent($event){
console.log($event)
}
//提交
submit () {
@ -161,15 +166,68 @@ export class uploadQuestions {
ngOnInit(): void {
let data = JSON.parse(sessionStorage.getItem("消防设施"+sessionStorage.getItem('paperId')))
data ? data.forEach(item => {
item.children.forEach(i => {
i.isLeaf = true
})
let realData = item.children
item.children = this.processingData(this.data.allFireElements,realData)
}) :null
this.renderData = data
this.getProfiles()
this.nodeInit()
}
//处理数据 将消防要素模板与真实素材结合
processingData(allFireElements,realData){
allFireElements[allFireElements.length-1].children = []
realData.forEach(item => {
item.isLeaf = true
let noMatch = allFireElements.find( every=> every.id === item.FireElementId )
if (!noMatch) {
allFireElements[allFireElements.length-1].children.push(item)
}
})
let treeData = [] //tree型 处理完成后的数据
allFireElements.forEach(element => {
element.key = element.id
element.name != '其他' ? element.children = [] : null
if(realData){
realData.forEach(item => {
if(element.id == item.FireElementId){
element.children.push(item)
}
})
}
allFireElements.forEach(item => { if (item.parentId == element.id) {element.children.push(item)} });
});
allFireElements.forEach(element => {
if (!element.parentId) { treeData.push(element) }
});
function recursionFilterEmpty(originalList, result) {
      for(let i = 0, length = originalList.length; i < length; i++) {
          const item = originalList[i];
          if (item.PropertyInfos) {
              // 最内层
              result.push(item);
          } else if (item.children && item.children.length) {
              const newChildren = [];
              // 递归调用,底层的真实数据会全部 push  newChildren 
              recursionFilterEmpty(item.children, newChildren);
              if (newChildren.length) {
                  // 替换原始数据
                  item.children = newChildren;
                  // 子项有真实的数据,就保留这一项
                  result.push(item);
              } // 如果没有这一项就会被删除
          }
      }
  }
  function filterEmpty(listData) {
      const result = [];
      recursionFilterEmpty(listData, result);
      return result;
  }
return filterEmpty(treeData)
}
//获取登录账号的个人资料
Profiles:any
getProfiles(){
@ -210,7 +268,7 @@ export class uploadQuestions {
submit () {
console.log(this.data.question)
let body:any = {
id: null,
id: this.route.snapshot.queryParams.paperplanId,
paperId: sessionStorage.getItem('paperId'),
planComponentId: sessionStorage.getItem('planId'),
examPlanType: this.route.snapshot.queryParams.openType == 1 ? 0 : 1,
@ -219,15 +277,14 @@ export class uploadQuestions {
isPublic: true,
title: this.route.snapshot.queryParams.planName,
mainPoint: this.data.question.keynote,
score: null,
score: 0,
examFacilityAssetsData: sessionStorage.getItem('消防设施' + sessionStorage.getItem('paperId')) ? sessionStorage.getItem('消防设施' + sessionStorage.getItem('paperId')) : null,
examDisposalNodesData: sessionStorage.getItem('examNodeList') ? sessionStorage.getItem('examNodeList') : null
examDisposalNodesData: sessionStorage.getItem('examNodeList') ? sessionStorage.getItem('examNodeList') : null,
companyId:sessionStorage.getItem('companyId')
}
let params:any = {
paperId:sessionStorage.getItem('paperId'),
examPlanType:this.route.snapshot.queryParams.openType == 1 ? 0 : 1
}
this.http.post("/api/PaperPlans",body,{params:params}).subscribe(data => {
this.http.put(`/api/PaperPlans/${this.route.snapshot.queryParams.paperplanId}`,body).subscribe(data => {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
@ -239,6 +296,7 @@ export class uploadQuestions {
})
}
}

5
src/app/ui/ui.module.ts

@ -62,8 +62,11 @@ import {AddEnterpriserUser} from './enterpriseuser/addenterpriseuser.component'
import {EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser} from './enterpriseuser/enterpriseuser.component'
import {AddTeacher} from './teacherManagement/addenterpriseuser.component'
import {TeacherManagementComponent,editTeacher,seeTeacher} from './teacherManagement/enterpriseuser.component'
import { CollectionToolsExamineeComponent } from './collection-tools-examinee/collection-tools.component';
import { examinationQuestionsExaminee, uploadDisposalNodesExaminee, uploadQuestionsExaminee } from './collection-tools-examinee/examinationQuestions';
import { saveOneDialogExaminee, saveTwoDialogExaminee } from './collection-tools-examinee/save';
@NgModule({
declarations: [ChangepasswordComponent,ConfirmpswDirective, ChangeuserdataComponent,testState,CollectionToolsComponent,CreateBuilding,EditBuilding,ViewDetailss,leftFunctionalDomainComponent,editPlaneFigureComponent,addDisposalNodeComponent,editDisposalNodeComponent,saveOneDialog,saveTwoDialog,WorkingAreaComponent,examinationQuestions,uploadQuestions,AddEnterpriserUser,EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser,AddTeacher,TeacherManagementComponent,editTeacher,seeTeacher,uploadDisposalNodes],
declarations: [ChangepasswordComponent,ConfirmpswDirective, ChangeuserdataComponent,testState,CollectionToolsComponent,CreateBuilding,EditBuilding,ViewDetailss,leftFunctionalDomainComponent,editPlaneFigureComponent,addDisposalNodeComponent,editDisposalNodeComponent,saveOneDialog,saveTwoDialog,WorkingAreaComponent,examinationQuestions,uploadQuestions,AddEnterpriserUser,EnterpriseuserComponent,editenterpriseuser,seeenterpriseuser,AddTeacher,TeacherManagementComponent,editTeacher,seeTeacher,uploadDisposalNodes,CollectionToolsExamineeComponent,examinationQuestionsExaminee,uploadQuestionsExaminee,uploadDisposalNodesExaminee,saveOneDialogExaminee,saveTwoDialogExaminee],
imports: [
NzDatePickerModule,
CommonModule,

Loading…
Cancel
Save