+
{
@@ -86,11 +85,20 @@ export class examinationQuestions {
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,
- children:checkList
+ buildingId:this.data.buildFloorData.buildingData.id,
+ children:checkList,
+ basicAssetsId:basicAssetsId
}
let data = JSON.parse(sessionStorage.getItem("试卷id"))
diff --git a/src/app/ui/collection-tools/save.ts b/src/app/ui/collection-tools/save.ts
index 413870a..6f17074 100644
--- a/src/app/ui/collection-tools/save.ts
+++ b/src/app/ui/collection-tools/save.ts
@@ -119,8 +119,8 @@ export class saveOneDialog {
imageNames: null,
imageUrls: null,
parentId: this.nodeItem ? this.nodeItem.id : null,
- disasterId: this.data.disasterId,
- planComponentId: sessionStorage.getItem('planId') || '',
+ 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,
@@ -180,8 +180,8 @@ export class saveOneDialog {
id: "",
data: JSON.stringify(this.canvasData.selectPanelPoint.Data) || null,
version: this.canvasData.selectPanelPoint.Version || "2.0",
- disposalNodeId: data.id,
- planComponentId: sessionStorage.getItem("planId"),
+ ExamDisposalNodeId: data.id,
+ ExamPlanComponentId: sessionStorage.getItem("planId"),
}
this.http.post(`/api/ExamDisposalNodeData`,objData).subscribe(data => {
const config = new MatSnackBarConfig();
@@ -226,12 +226,12 @@ export class saveOneDialog {
}
}
dispositionNodeData = {
- id: "",
+ id: null,
name: value.name,
level: this.nodeItem && this.nodeItem.id != null ? this.nodeItem.level + 1 : 0,
order: order,
- description: "",
- notes: "",
+ description: null,
+ notes: null,
weather: null,
airTemperature: 0,
windDirection: 0,
@@ -239,8 +239,8 @@ export class saveOneDialog {
imageNames: null,
imageUrls: null,
parentId: this.nodeItem ? this.nodeItem.id : null,
- disasterId: this.data.disasterId,
- planComponentId: sessionStorage.getItem('planId') || '',
+ examDisasterId: this.data.disasterId,
+ ExamPlanComponentId: sessionStorage.getItem('planId') || '',
companyId: null,
sitePlanId: null,
buildingId: null,
@@ -273,11 +273,11 @@ export class saveOneDialog {
// let postdata =JSON.parse(JSON.stringify(this.canvasData.selectPanelPoint))
// postdata.Data = JSON.stringify(postdata.Data)
let objData = {
- id: "",
+ id: null,
data: JSON.stringify(this.canvasData.selectPanelPoint.Data) || null,
version: this.canvasData.selectPanelPoint.Version || "2.0",
- disposalNodeId: data.id,
- planComponentId: sessionStorage.getItem("planId"),
+ ExamDisposalNodeId: data.id,
+ ExamPlanComponentId: sessionStorage.getItem("planId"),
}
this.http.post(`/api/ExamDisposalNodeData`,objData).subscribe(data => {
diff --git a/src/assets/css/ngZorroTree.css b/src/assets/css/ngZorroTree.css
index 2386294..84a89b6 100644
--- a/src/assets/css/ngZorroTree.css
+++ b/src/assets/css/ngZorroTree.css
@@ -344,12 +344,8 @@
text-align: center;
cursor: pointer
}
-#createtestscore,#nodeTree .ant-tree .ant-tree-switcher {
- line-height: 22px;
-}
-#uploadfiretree .ant-tree .ant-tree-switcher {
- line-height: 20px;
-}
+
+
#disposalNodeTree .ant-tree-checkbox {
margin-top: 10px;
}
diff --git a/src/styles.scss b/src/styles.scss
index 16022e1..5f379de 100644
--- a/src/styles.scss
+++ b/src/styles.scss
@@ -117,3 +117,9 @@ table td.mat-footer-cell:last-of-type{
}
}
+
+#nodeTree,#basicinfodiv,#uploadfiretree{
+ .ant-tree .ant-tree-switcher {
+ line-height: 22px;
+ }
+}
From 8b6ca8a897de73ea3d3d1d85e2228bfa237738c3 Mon Sep 17 00:00:00 2001
From: cpf <1105965053@qq.com>
Date: Mon, 21 Dec 2020 13:52:32 +0800
Subject: [PATCH 2/6] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E8=80=83=E6=A0=B8?=
=?UTF-8?q?=E5=A4=84=E7=BD=AE=E8=8A=82=E7=82=B9=E4=BF=9D=E5=AD=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../collection-tools.component.ts | 8 +++--
.../collection-tools/examinationQuestions.ts | 34 +++++++++++++++++++
.../ui/collection-tools/uploadQuestions.html | 19 ++++++++++-
3 files changed, 57 insertions(+), 4 deletions(-)
diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts
index bc026a5..4cc7633 100644
--- a/src/app/ui/collection-tools/collection-tools.component.ts
+++ b/src/app/ui/collection-tools/collection-tools.component.ts
@@ -1080,7 +1080,6 @@ export class CollectionToolsComponent implements OnInit {
}
-
//打开消防设施考题设定
openFireExamination () {
console.log(1,this.beforeOneCheckedBuilding)
@@ -1096,8 +1095,11 @@ export class CollectionToolsComponent implements OnInit {
//上传考题
openUploadQuestions () {
let treeData = JSON.parse( JSON.stringify(this.dataSource.data) )
- let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ) }
- let dialogRef = this.dialog.open(uploadQuestions,{data});
+ let nodes = JSON.parse( JSON.stringify( JSON.parse(sessionStorage.getItem('examNodeList')) ) )
+ if (treeData && nodes) {
+ let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ), node: nodes }
+ let dialogRef = this.dialog.open(uploadQuestions,{data});
+ }
}
//封装 刷新 tree 数据
diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts
index ce064fc..162ed3b 100644
--- a/src/app/ui/collection-tools/examinationQuestions.ts
+++ b/src/app/ui/collection-tools/examinationQuestions.ts
@@ -146,7 +146,9 @@ export class uploadQuestions {
defaultExpandedKeys = []; //展开指定的树节点 key值
defaultSelectedKeys = []; //指定选中的树节点 key值
renderData:any
+
ngOnInit(): void {
+ this.nodeInit()
let data = JSON.parse(sessionStorage.getItem("试卷id"))
data.forEach(item => {
item.children.forEach(i => {
@@ -155,6 +157,32 @@ export class uploadQuestions {
})
this.renderData = 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)
}
@@ -188,6 +216,12 @@ export class uploadDisposalNodes {
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 {
diff --git a/src/app/ui/collection-tools/uploadQuestions.html b/src/app/ui/collection-tools/uploadQuestions.html
index a8d57c7..a891755 100644
--- a/src/app/ui/collection-tools/uploadQuestions.html
+++ b/src/app/ui/collection-tools/uploadQuestions.html
@@ -5,7 +5,7 @@
考核消防设施
-
+
+
考核处置节点
+
+
+
+
+
+
+
+
+
+
+
From 454d07d4b41a5e5c62e532bb22a7904aad6bad5c Mon Sep 17 00:00:00 2001
From: SHAOJIAHAO <55341701@qq.com>
Date: Mon, 21 Dec 2020 13:55:27 +0800
Subject: [PATCH 3/6] =?UTF-8?q?[=E6=96=B0=E5=A2=9E]=E6=96=B0=E5=A2=9E?=
=?UTF-8?q?=E9=A2=84=E6=A1=88=E9=A1=B5=E9=9D=A2=E4=B8=8A=E4=BC=A0=E6=8C=89?=
=?UTF-8?q?=E9=92=AE=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../create-test-score.component.ts | 10 ++--
.../collection-tools/examinationQuestions.ts | 56 ++++++++++++++++---
2 files changed, 53 insertions(+), 13 deletions(-)
diff --git a/src/app/examiner/create-test-score/create-test-score.component.ts b/src/app/examiner/create-test-score/create-test-score.component.ts
index 19d4368..49fe135 100644
--- a/src/app/examiner/create-test-score/create-test-score.component.ts
+++ b/src/app/examiner/create-test-score/create-test-score.component.ts
@@ -60,7 +60,7 @@ export class CreateTestScoreComponent implements OnInit {
clickUnitName(key){
this.selectedUnitIndex = key
}
- unitId:any = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paper')))
+ unitId:any = JSON.parse(sessionStorage.getItem(sessionStorage.getItem('paperId')))
//获取单位基本信息
async getUnitData(){
@@ -1085,13 +1085,13 @@ export class CreateTestScoreComponent implements OnInit {
//判断是否存在总分填写后没有勾选 或者勾选了没有填写总分的情况
paperDataInfo.forEach(element => {
- element.planList.forEach(item => {
+ element.planList ? element.planList.forEach(item => {
if(!item.score || item.score == 0){
element.isPlanScore = false
}else{
element.isPlanScore = true
}
- })
+ }) : null
//判断存在总分填写后没有勾选题目
if( (element.basicInfoScore != 0 && JSON.parse(element.basicInfoData).length == 0) ||
@@ -1240,7 +1240,7 @@ export class AddPlanTwoDialog {
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')
+ window.open(`/canvasTool?openType=1&planName=${this.selectedRadioData.name}`)
}else{
if(this.dataSource.length == 0){
this.dialogRef.close();
@@ -1274,7 +1274,7 @@ export class AddPlanTwoDialog {
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')
+ window.open(`/canvasTool?openType=2&planName=${this.customPlanName}`)
})
}
}
diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts
index 1de21b6..9743466 100644
--- a/src/app/ui/collection-tools/examinationQuestions.ts
+++ b/src/app/ui/collection-tools/examinationQuestions.ts
@@ -6,6 +6,7 @@ import {CanvasShareDataService,DisposalNodeData} from '../../canvas-share-data.s
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',
@@ -101,7 +102,7 @@ export class examinationQuestions {
basicAssetsId:basicAssetsId
}
- let data = JSON.parse(sessionStorage.getItem("试卷id"))
+ let data = JSON.parse(sessionStorage.getItem("消防设施"+sessionStorage.getItem('paperId')))
if(data && data.length != 0){
console.log(1)
@@ -121,13 +122,13 @@ export class examinationQuestions {
}else{
data.push(obj)
}
- sessionStorage.setItem("试卷id",JSON.stringify(data))
+ sessionStorage.setItem("消防设施"+sessionStorage.getItem('paperId'),JSON.stringify(data))
}else{
console.log(2)
data = []
data[0] = obj
- sessionStorage.setItem("试卷id",JSON.stringify(data))
+ sessionStorage.setItem("消防设施"+sessionStorage.getItem('paperId'),JSON.stringify(data))
}
@@ -135,11 +136,13 @@ export class examinationQuestions {
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('当层消防设施考题设置完成','确定',config);
- // this.dialogRef.close()
+ this.dialogRef.close()
}
}
+
+//上传按钮
@Component({
selector: 'dialog-upload-questions',
templateUrl: './uploadQuestions.html',
@@ -148,20 +151,29 @@ export class examinationQuestions {
export class uploadQuestions {
constructor(private http:HttpClient, public dialog: MatDialog, public snackBar: MatSnackBar, public dialogRef: MatDialogRef
,
- @Inject(MAT_DIALOG_DATA) public data) {}
+ @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("试卷id"))
- data.forEach(item => {
+ let data = JSON.parse(sessionStorage.getItem("消防设施"+sessionStorage.getItem('paperId')))
+ data ? data.forEach(item => {
item.children.forEach(i => {
i.isLeaf = true
})
- })
+ }) :null
this.renderData = data
+ this.getProfiles()
+ }
+ //获取登录账号的个人资料
+ Profiles:any
+ getProfiles(){
+ this.http.get('/api/ExamAccounts/Profiles').subscribe(data => {
+ console.log(data)
+ this.Profiles = data
+ })
}
nzEvent($event){
console.log($event)
@@ -169,10 +181,38 @@ export class uploadQuestions {
//上传
submit () {
console.log(this.data.question)
+ let body:any = {
+ id: null,
+ 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: null,
+ examFacilityAssetsData: sessionStorage.getItem('消防设施' + sessionStorage.getItem('paperId')) ? sessionStorage.getItem('消防设施' + sessionStorage.getItem('paperId')) : null,
+ examDisposalNodesData: sessionStorage.getItem('examNodeList') ? sessionStorage.getItem('examNodeList') : null
+ }
+ 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 => {
+ const config = new MatSnackBarConfig();
+ config.verticalPosition = 'top';
+ config.duration = 3000
+ this.snackBar.open('设置完成','确定',config);
+ })
+
}
}
+
+
+//保存考的节点
@Component({
selector: 'dialog-disposal-nodes',
templateUrl: './uploadDisposalNodes.html',
From 3933e6ef6b6d9a392919a0022a2dd57063c489d7 Mon Sep 17 00:00:00 2001
From: cpf <1105965053@qq.com>
Date: Mon, 21 Dec 2020 14:13:55 +0800
Subject: [PATCH 4/6] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E5=AE=8C=E5=96=84?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/app/ui/collection-tools/collection-tools.component.ts | 1 -
src/app/ui/collection-tools/examinationQuestions.ts | 5 +++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts
index 352287a..ab742b6 100644
--- a/src/app/ui/collection-tools/collection-tools.component.ts
+++ b/src/app/ui/collection-tools/collection-tools.component.ts
@@ -1082,7 +1082,6 @@ export class CollectionToolsComponent implements OnInit {
//打开消防设施考题设定
openFireExamination () {
- console.log(1,this.beforeOneCheckedBuilding)
let treeData = JSON.parse( JSON.stringify(this.dataSource.data) )
let buildFloorData = {
buildingData:this.beforeOneCheckedBuilding,
diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts
index ec517fd..3963d31 100644
--- a/src/app/ui/collection-tools/examinationQuestions.ts
+++ b/src/app/ui/collection-tools/examinationQuestions.ts
@@ -157,7 +157,7 @@ export class uploadQuestions {
defaultExpandedKeys = []; //展开指定的树节点 key值
defaultSelectedKeys = []; //指定选中的树节点 key值
renderData:any
-
+
ngOnInit(): void {
let data = JSON.parse(sessionStorage.getItem("消防设施"+sessionStorage.getItem('paperId')))
data ? data.forEach(item => {
@@ -167,12 +167,13 @@ export class uploadQuestions {
}) :null
this.renderData = data
this.getProfiles()
+ this.nodeInit()
}
+
//获取登录账号的个人资料
Profiles:any
getProfiles(){
this.http.get('/api/ExamAccounts/Profiles').subscribe(data => {
- console.log(data)
this.Profiles = data
})
}
From 4a5254de36ec0dc378ab6920f7aa15f7cef549d5 Mon Sep 17 00:00:00 2001
From: SHAOJIAHAO <55341701@qq.com>
Date: Mon, 21 Dec 2020 14:16:23 +0800
Subject: [PATCH 5/6] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=E5=BC=95=E5=85=A5swipe?=
=?UTF-8?q?r=E6=8F=92=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
angular.json | 6 ++++--
src/app/ui/collection-tools/examinationQuestions.ts | 7 ++++++-
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/angular.json b/angular.json
index 07cf0ab..d183d30 100644
--- a/angular.json
+++ b/angular.json
@@ -30,11 +30,13 @@
],
"styles": [
"src/styles.scss",
- "node_modules/viewerjs/dist/viewer.css"
+ "node_modules/viewerjs/dist/viewer.css",
+ "./node_modules/swiper/css/swiper.min.css"
],
"scripts": [
"node_modules/echarts/dist/echarts.js",
- "src/assets/echarts/echarts.common.min.js"
+ "src/assets/echarts/echarts.common.min.js",
+ "./node_modules/swiper/js/swiper.min.js"
]
},
"configurations": {
diff --git a/src/app/ui/collection-tools/examinationQuestions.ts b/src/app/ui/collection-tools/examinationQuestions.ts
index ec517fd..a93beea 100644
--- a/src/app/ui/collection-tools/examinationQuestions.ts
+++ b/src/app/ui/collection-tools/examinationQuestions.ts
@@ -227,10 +227,15 @@ export class uploadQuestions {
examPlanType:this.route.snapshot.queryParams.openType == 1 ? 0 : 1
}
this.http.post("/api/PaperPlans",body,{params:params}).subscribe(data => {
+
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
- this.snackBar.open('设置完成','确定',config);
+ this.snackBar.open('设置完成,页面将于一秒后关闭','确定',config);
+ setTimeout(() => {
+ window.close()
+ }, 1000);
+
})
}
From b2de4c827a52da17d881e8208e37e7fa08695478 Mon Sep 17 00:00:00 2001
From: cpf <1105965053@qq.com>
Date: Tue, 22 Dec 2020 09:51:35 +0800
Subject: [PATCH 6/6] =?UTF-8?q?[=E5=AE=8C=E5=96=84]=20=E4=B8=8A=E4=BC=A0?=
=?UTF-8?q?=E9=99=90=E5=88=B6=E6=8F=90=E7=A4=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../ui/collection-tools/collection-tools.component.ts | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/src/app/ui/collection-tools/collection-tools.component.ts b/src/app/ui/collection-tools/collection-tools.component.ts
index ab742b6..30c1264 100644
--- a/src/app/ui/collection-tools/collection-tools.component.ts
+++ b/src/app/ui/collection-tools/collection-tools.component.ts
@@ -1095,9 +1095,14 @@ export class CollectionToolsComponent implements OnInit {
openUploadQuestions () {
let treeData = JSON.parse( JSON.stringify(this.dataSource.data) )
let nodes = JSON.parse( JSON.stringify( JSON.parse(sessionStorage.getItem('examNodeList')) ) )
- if (treeData && nodes) {
+ if (nodes) {
let data = { treeData: treeData, question: JSON.parse( JSON.stringify(this.examMsg) ), node: nodes }
let dialogRef = this.dialog.open(uploadQuestions,{data});
+ } else {
+ const config = new MatSnackBarConfig();
+ config.verticalPosition = 'top';
+ config.duration = 3000
+ this.snackBar.open('未选择考核处置节点','确定',config);
}
}
@@ -1846,7 +1851,7 @@ export class CollectionToolsComponent implements OnInit {
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
- this.snackBar.open('暂无数据节点','确定',config);
+ this.snackBar.open('暂无处置节点','确定',config);
}
}