Browse Source

[完善]完善保存提醒,完善储罐名称,完善勾选数量显示

master
邵佳豪 4 years ago
parent
commit
8b4e2bc601
  1. 5
      src/app/examiner/create-test-score/addPlanTwo.html
  2. 8
      src/app/examiner/create-test-score/create-test-score.component.html
  3. 83
      src/app/examiner/create-test-score/create-test-score.component.ts
  4. 2
      src/app/examiner/create-test-score/lookTreeNode.html

5
src/app/examiner/create-test-score/addPlanTwo.html

@ -3,7 +3,7 @@
<div class="title">
添加预案
</div>
<div class="tablebox">
<div *ngIf="dataSource.length != 0" class="tablebox">
<table mat-table [dataSource]="dataSource" class="mat-elevation-z8">
<!-- Checkbox Column -->
@ -47,6 +47,9 @@
</table>
</div>
<div *ngIf="dataSource.length == 0">
该单位暂无审核通过的二维预案
</div>
</div>
<div *ngIf="!planType">
<div class="title">

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

@ -49,12 +49,14 @@
基本信息
<!-- <span class="colorspan" style="margin-left: 20px;">{{unit.basicInfoScore ? unit.basicInfoScore : 0}}分</span> -->
<span style="margin-left: 20px;">
总分值: <input class="scoreInput" type="number" (click)="stopPropagation($event)"
总分值: <input onchange="if(!value)value=0" class="scoreInput" type="number" (click)="stopPropagation($event)"
[(ngModel)]="unit.basicInfoScore" (input)="sumScore('基本信息',key)"> 分,
单项
<span style="color: #FF8678;">
{{unit.basicInfoItemScore ? unit.basicInfoItemScore : 0}}
</span>
<span *ngIf="unit.basicInfoSelectedNum">(已选择 {{unit.basicInfoSelectedNum}} 项)</span>
</span>
</mat-panel-title>
</mat-expansion-panel-header>
@ -97,6 +99,7 @@
单项 <span style="color: #FF8678;">
{{unit.aroundItemScore ? unit.aroundItemScore : 0}}
</span>
<span *ngIf="unit.aroundSelectedNum">(已选择 {{unit.aroundSelectedNum}} 项)</span>
</span>
</mat-panel-title>
</mat-expansion-panel-header>
@ -139,6 +142,7 @@
单项 <span style="color: #FF8678;">
{{unit.keySiteItemScore ? unit.keySiteItemScore : 0}}
</span>
<span *ngIf="unit.keySiteSelectedNum">(已选择 {{unit.keySiteSelectedNum}} 项)</span>
</span>
</mat-panel-title>
</mat-expansion-panel-header>
@ -181,6 +185,7 @@
单项 <span style="color: #FF8678;">
{{unit.funDivItemScore ? unit.funDivItemScore : 0}}
</span>
<span *ngIf="unit.funDivSelectedNum">(已选择 {{unit.funDivSelectedNum}} 项)</span>
</span>
</mat-panel-title>
</mat-expansion-panel-header>
@ -223,6 +228,7 @@
单项 <span style="color: #FF8678;">
{{unit.fireFacItemScore ? unit.fireFacItemScore : 0}}
</span>
<span *ngIf="unit.fireFacSelectedNum">(已选择 {{unit.fireFacSelectedNum}} 项)</span>
</span>
</mat-panel-title>
</mat-expansion-panel-header>

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

@ -127,6 +127,7 @@ export class CreateTestScoreComponent implements OnInit {
buildingsData.name = data[i].name
buildingsData.buildingType = data[i].buildingTypes[0].name
buildingsData[0].buildingBasicGroups.forEach((y,m) => {
let propertyInfosArr = []
let tabledata
if(y.type == 1){//如果是表格类
@ -158,6 +159,28 @@ export class CreateTestScoreComponent implements OnInit {
})
y.tabledata = dest
tabledata = dest
if(y.tabledata[0].propertyName == '罐区'){
if(y.tabledata[1].propertyName != '储罐编号'){
let index
y.tabledata.forEach((element,key) => {
if(element.propertyName == '储罐编号'){
index = key
}
})
y.tabledata[1] = y.tabledata.splice(index, 1, y.tabledata[1])[0];
}
y.tabledata[0].data.forEach((x,key) => {
if(x.propertyValue){
x.key = (Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5)
x.isLeaf = true
x.name = x.propertyValue + '-' + y.tabledata[1].data[key].propertyValue
propertyInfosArr.push(x)
}
})
}else{
y.tabledata[0].data.forEach((x,key) => {
if(x.propertyValue){
x.key = (Math.random()*10000000).toString(16).substr(0,4)+(new Date()).getTime()+Math.random().toString().substr(2,5)
@ -166,6 +189,8 @@ export class CreateTestScoreComponent implements OnInit {
propertyInfosArr.push(x)
}
})
}
}else{
y.propertyInfos.forEach((x,key) => {
if(x.propertyValue){
@ -581,6 +606,7 @@ export class CreateTestScoreComponent implements OnInit {
}else{
this.unitId[key].basicInfoItemScore = 0
}
this.unitId[key].basicInfoSelectedNum = selectedNum.length
}
if(event.node.origin.type == '四周毗邻' || (event.node.parentNode && event.node.parentNode.origin.type == '四周毗邻')){
let selectedNum = []
@ -594,6 +620,7 @@ export class CreateTestScoreComponent implements OnInit {
}else{
this.unitId[key].aroundItemScore = 0
}
this.unitId[key].aroundSelectedNum = selectedNum.length
}
if(event.node.origin.type == '重点部位' || (event.node.parentNode && event.node.parentNode.origin.type == '重点部位')){
let selectedNum = []
@ -607,6 +634,7 @@ export class CreateTestScoreComponent implements OnInit {
}else{
this.unitId[key].keySiteItemScore = 0
}
this.unitId[key].keySiteSelectedNum = selectedNum.length
}
if(event.node.origin.type == '功能分区' || (event.node.parentNode && event.node.parentNode.origin.type == '功能分区')){
let selectedNum = []
@ -620,6 +648,7 @@ export class CreateTestScoreComponent implements OnInit {
}else{
this.unitId[key].funDivItemScore = 0
}
this.unitId[key].funDivSelectedNum = selectedNum.length
}
if(event.node.origin.type == '消防设施' || (event.node.parentNode && event.node.parentNode.origin.type == '消防设施')){
let selectedNum = []
@ -633,6 +662,7 @@ export class CreateTestScoreComponent implements OnInit {
}else{
this.unitId[key].fireFacItemScore = 0
}
this.unitId[key].fireFacSelectedNum = selectedNum.length
}
}
@ -730,6 +760,7 @@ export class CreateTestScoreComponent implements OnInit {
}
});
}
//每条预案分数增加在试卷分数
planItemScore(item){
//计算整个试卷的总分
@ -750,6 +781,7 @@ export class CreateTestScoreComponent implements OnInit {
})
this.examScore = examScore + examScore2
}
//编辑每条预案试卷
edit(item){
const config = new MatSnackBarConfig();
@ -757,6 +789,7 @@ export class CreateTestScoreComponent implements OnInit {
config.duration = 3000
this.snackBar.open('暂不能编辑','确定',config);
}
//删除每条预案试卷
deletePlan(item){
this.unitId[this.selectedUnitIndex].planList.forEach((element,key)=>{
@ -772,7 +805,6 @@ export class CreateTestScoreComponent implements OnInit {
//保存
save(){
let copyDatas = JSON.parse(JSON.stringify(this.unitId))
//循环每个建筑处理数据筛选出选中数据
copyDatas.forEach(item => {
//建筑的基本信息模块处理
@ -1031,9 +1063,7 @@ export class CreateTestScoreComponent implements OnInit {
}) : null
})
//循环每个建筑处理数据
console.log(copyDatas)
//将筛选出来的数据变为服务器提交数据
let paperDataInfo = []
copyDatas.forEach((item,key) =>{
paperDataInfo[key] = {}
@ -1052,18 +1082,47 @@ export class CreateTestScoreComponent implements OnInit {
paperDataInfo[key].facilityScore = item.fireFacScore
})
console.log(paperDataInfo)
// console.log(123456,paperDataInfo)
//判断是否存在总分填写后没有勾选 或者勾选了没有填写总分的情况
paperDataInfo.forEach(element => {
//判断存在总分填写后没有勾选题目
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) ){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('存在填写过总分,但未勾选题目的分组','确定',config);
return
}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) ){
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('存在勾选过题目,但未填写总分的分组','确定',config);
return
}else{
const dialogRef = this.dialog.open(FinishDialog, {
width: '650px',
data: paperDataInfo
});
dialogRef.afterClosed().subscribe(result => {
});
}
})
}
//上一步
goBack(){
window.history.back();
@ -1142,7 +1201,8 @@ export class AddPlanTwoDialog {
companyId:this.data.companyData.companyData.id
}}).subscribe((data:any) => {
data.items.forEach(item => {
item.planType == 1 ? planArr.push(item) : null
//二维预案并且审核通过
(item.planType == 1 && item.auditStatus == 2) ? planArr.push(item) : null
})
this.dataSource = planArr
})
@ -1161,12 +1221,17 @@ export class AddPlanTwoDialog {
sessionStorage.setItem('buildingTypeId',this.data.companyData.companyData.buildingTypes[0].id)
sessionStorage.setItem('companyId',this.data.companyData.companyData.id)
window.open('/canvasTool')
}else{
if(this.dataSource.length == 0){
this.dialogRef.close();
}else{
const config = new MatSnackBarConfig();
config.verticalPosition = 'top';
config.duration = 3000
this.snackBar.open('请选择要添加的预案','确定',config);
}
}
}else{//如果选择的是自定义预案

2
src/app/examiner/create-test-score/lookTreeNode.html

@ -14,7 +14,7 @@
<td *ngFor="let item of data.tabledata">{{item.propertyName}}</td>
</tr>
<tr *ngFor="let item of data.tabledata[0].data;let key = index">
<td *ngFor="let i of data.tabledata">{{i.data[key]. propertyValue}}</td>
<td *ngFor="let i of data.tabledata">{{i.data[key]. propertyValue ? i.data[key]. propertyValue : '无'}}</td>
</tr>
</table>

Loading…
Cancel
Save