diff --git a/src/views/application/pigeonhole/components/info.vue b/src/views/application/pigeonhole/components/info.vue index ce54bcf..b7a86c3 100644 --- a/src/views/application/pigeonhole/components/info.vue +++ b/src/views/application/pigeonhole/components/info.vue @@ -74,7 +74,7 @@ - {{ formatTime(hotUserList[1].OPERATTIME) }} + {{ formatTime(hotUserList[1].OPERATTIME) }} @@ -87,7 +87,7 @@ - {{ formatTime(hotUserList[2].OPERATTIME) }} + {{ formatTime(hotUserList[2].OPERATTIME) }} @@ -100,7 +100,7 @@ - {{ formatTime(hotUserList[3].OPERATTIME) }} + {{ formatTime(hotUserList[3].OPERATTIME) }} @@ -113,7 +113,7 @@ - {{ formatTime(hotUserList[4].OPERATTIME) }} + {{ formatTime(hotUserList[4].OPERATTIME) }} @@ -130,7 +130,7 @@ - {{ formatTime(hotUserList[5].OPERATTIME) }} + {{ formatTime(hotUserList[5].OPERATTIME) }} @@ -143,7 +143,7 @@ - {{ formatTime(hotUserList[6].OPERATTIME) }} + {{ formatTime(hotUserList[6].OPERATTIME) }} @@ -156,7 +156,7 @@ - {{ formatTime(hotUserList[7].OPERATTIME) }} + {{ formatTime(hotUserList[7].OPERATTIME) }} @@ -169,7 +169,7 @@ - {{ formatTime(hotUserList[8].OPERATTIME) }} + {{ formatTime(hotUserList[8].OPERATTIME) }} @@ -182,7 +182,7 @@ - {{ formatTime(hotUserList[9].OPERATTIME) }} + {{ formatTime(hotUserList[9].OPERATTIME) }} diff --git a/src/views/application/supervision/components/info.vue b/src/views/application/supervision/components/info.vue index 1ee567f..a30efe9 100644 --- a/src/views/application/supervision/components/info.vue +++ b/src/views/application/supervision/components/info.vue @@ -403,7 +403,11 @@ export default { this.pd = data.pd this.hotUserList = data.hotUserList for (let i = 0; i < data.hotOperator.length; i++) { - this.hotOperatorNames += data.hotOperator[i].userName2 + ';' + if (i === data.hotOperator.length - 1) { + this.hotOperatorNames += data.hotOperator[i].userName2 + } else { + this.hotOperatorNames += data.hotOperator[i].userName2 + ';' + } } this.corpinfo = data.corpinfo diff --git a/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue b/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue index 090f743..7039d49 100644 --- a/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue +++ b/src/views/evaluation/branch_hazard_assessment/components/evaluation.vue @@ -164,6 +164,12 @@ icon="el-icon-view" @click="fnEvaluation(row.HIDDEN_ID,row.SOURCE, row.CREATOR,'edit')">考评 + 删除 + @@ -420,6 +426,34 @@ export default { }) } }) + }, + fnDelvaluation(hiddenId) { + this.$confirm('确定要删除选中的评审记录吗?', { + confirmButtonText: '确定', + cancelButtonText: '取消', + type: 'warning' + }).then(() => { + this.listLoading = true + requestFN( + '/hiddenevaluationrecord/deleteEvaluation', + { + HIDDEN_ID: hiddenId + } + ).then((data) => { + this.listLoading = false + if (data.result === 'success') { + this.$message.success('删除成功') + this.getList() + } else { + this.$message({ + message: data.message, + type: 'error' + }) + } + }).catch((e) => { + }) + }).catch(() => { + }) } } } diff --git a/src/views/keyprojects/outsourced/components/info.vue b/src/views/keyprojects/outsourced/components/info.vue index 9c82aa0..8da1a64 100644 --- a/src/views/keyprojects/outsourced/components/info.vue +++ b/src/views/keyprojects/outsourced/components/info.vue @@ -112,6 +112,10 @@ 未定位 查看定位 + + 具体位置 + {{ pd.LOCATION }} + 安全管理协议{{ index + 1 }} {{ item.FILE_NAME }} diff --git a/src/views/map/dialog/confinedspace.vue b/src/views/map/dialog/confinedspace.vue index 29aae12..d6fbf90 100644 --- a/src/views/map/dialog/confinedspace.vue +++ b/src/views/map/dialog/confinedspace.vue @@ -2,219 +2,179 @@