From 764266a2abadb8944d1751bbd83f033cb1fa2cb8 Mon Sep 17 00:00:00 2001
From: xzt <1113240624@qq.com>
Date: Thu, 25 Jan 2024 19:22:27 +0800
Subject: [PATCH] =?UTF-8?q?=E5=AE=89=E5=85=A8=E9=89=B4=E5=AE=9A=E6=B8=85?=
=?UTF-8?q?=E5=8D=95=E5=AE=A1=E6=A0=B8=E9=A1=B5=E9=9D=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../sluice/components/listBaseInfo_em.vue | 502 ++++++++++++++++++
.../components/listSafetyDetection_em.vue | 424 +++++++++++++++
.../safetyAppraisal/sluice/list.vue | 51 +-
3 files changed, 975 insertions(+), 2 deletions(-)
create mode 100644 src/views/safetyManage/safetyAppraisal/sluice/components/listBaseInfo_em.vue
create mode 100644 src/views/safetyManage/safetyAppraisal/sluice/components/listSafetyDetection_em.vue
diff --git a/src/views/safetyManage/safetyAppraisal/sluice/components/listBaseInfo_em.vue b/src/views/safetyManage/safetyAppraisal/sluice/components/listBaseInfo_em.vue
new file mode 100644
index 0000000..7f56f2f
--- /dev/null
+++ b/src/views/safetyManage/safetyAppraisal/sluice/components/listBaseInfo_em.vue
@@ -0,0 +1,502 @@
+
+
+
+
+ 水闸名称
+ {{ this.wagaName }}
+
+
+ 鉴定日期
+ {{ this.form.identifyTime }}
+
+
+ 下次鉴定日期
+ {{ this.form.nextIdentifyTime }}
+
+
+ 安全评价单位
+ {{ this.form.safetyEvaluationUnit }}
+
+
+ 单位资质
+ {{ this.form.unitQualification }}
+
+
+ 审定部门
+ {{ this.form.approvalDepartment }}
+
+
+ 审定部门级别
+ {{ approvalDepartmentLevelFormat(this.form) }}
+
+
+ 安全类别
+ {{ securityCategoryFormat(this.form) }}
+
+
+ 防洪安全鉴定意见
+ {{ this.form.floodControlOpinions }}
+
+
+ 结构安全鉴定意见
+ {{ this.form.structuralOpinion }}
+
+
+ 渗流安全鉴定意见
+ {{ this.form.seepageOpinion }}
+
+
+ 抗震安全鉴定意见
+ {{ this.form.seismicOpinion }}
+
+
+ 金属结构安全鉴定意见
+ {{ this.form.metalStructuralOpinion }}
+
+
+ 鉴定工程存在主要问题
+ {{ this.form.mainIssues }}
+
+
+ 其他工程问题
+ {{ this.form.otherEngineerIssues }}
+
+
+ 水闸安全评价报告
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 安全鉴定报告
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 安全鉴定意见
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/safetyManage/safetyAppraisal/sluice/components/listSafetyDetection_em.vue b/src/views/safetyManage/safetyAppraisal/sluice/components/listSafetyDetection_em.vue
new file mode 100644
index 0000000..6a1b181
--- /dev/null
+++ b/src/views/safetyManage/safetyAppraisal/sluice/components/listSafetyDetection_em.vue
@@ -0,0 +1,424 @@
+
+
+
+
+ 水闸名称
+ {{ this.wagaName }}
+
+
+ 闸门数量
+ {{ this.form.holesNumber }}
+
+
+ 启闭机数量
+ {{ this.form.hoistNumber }}
+
+
+ 闸门型式
+ {{ gateTypeFormat(this.form) }}
+
+
+ 启闭机型式
+ {{ hoistTypeFormat(this.form) }}
+
+
+ 安全评价
+ {{ this.form.evaluate }}
+
+
+
+ 现场检测成果
+
+
+ {{ item.name }}
+
+
+
+
+
+
+ 复核计算成果
+
+
+ {{ item.name }}
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/safetyManage/safetyAppraisal/sluice/list.vue b/src/views/safetyManage/safetyAppraisal/sluice/list.vue
index 142698d..b3d1ca0 100644
--- a/src/views/safetyManage/safetyAppraisal/sluice/list.vue
+++ b/src/views/safetyManage/safetyAppraisal/sluice/list.vue
@@ -222,6 +222,39 @@
取 消
-->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -231,15 +264,21 @@ import { listJbxx, getJbxx } from "@/api/yg/jbxx";
import listBaseInfo from "./components/listBaseInfo.vue";
import listSafetyDetection from "./components/listSafetyDetection.vue";
+import listBaseInfoEm from "./components/listBaseInfo_em.vue";
+import listSafetyDetectionEm from "./components/listSafetyDetection_em.vue";
+
export default {
name: "Szrw",
components: {
listBaseInfo,
listSafetyDetection,
+ listBaseInfoEm,
+ listSafetyDetectionEm,
},
data() {
return {
activeName: "listBaseInfo",
+ emActiveName: "listBaseInfoEm",
// 遮罩层
loading: true,
// 选中数组
@@ -256,8 +295,10 @@ export default {
szrwList: [],
// 弹出层标题
title: "",
+ emTitle: "",
// 是否显示弹出层
open: false,
+ emOpen: false,
// 水闸类型字典
sluiceTypeOptions: [],
// 水闸项目
@@ -305,6 +346,7 @@ export default {
methods: {
close() {
this.activeName = "listBaseInfo";
+ this.emActiveName = "listBaseInfoEm";
},
// 水闸类型字典翻译
sluiceTypeFormat(row, column) {
@@ -377,7 +419,7 @@ export default {
/** 填按钮操作 */
fillOut(row) {
- this.reset();
+ // this.reset();
this.szrwId = row.id;
this.wagaName = row.wagaName;
this.open = true;
@@ -388,7 +430,12 @@ export default {
// this.title = "修改水闸鉴定任务关联";
// });
},
- examine(row) {},
+ examine(row) {
+ this.szrwId = row.id;
+ this.wagaName = row.wagaName;
+ this.emOpen = true;
+ this.emTitle = "审核安全鉴定信息";
+ },
},
};