diff --git a/src/views/goverment/qualitySupervision/components/transformInfo.vue b/src/views/goverment/qualitySupervision/components/transformInfo.vue
index a57c404..5871e24 100644
--- a/src/views/goverment/qualitySupervision/components/transformInfo.vue
+++ b/src/views/goverment/qualitySupervision/components/transformInfo.vue
@@ -110,10 +110,50 @@
整改情况
- 新增整改记录
+ 新增整改记录
+
+
+
+
+
+ 创建人:
+ 朱可
+
+
+ 整改回复:
+ 朱可
+
+
+
隐患照片:
+

+
+
+ 整改回复:
+ 朱可
+
+ 已闭合
+
+ 审核
+
+
+
+
+
+
+ 审核意见
+
+
+
+
+
+
+
@@ -138,6 +178,13 @@ const showRecord = () => {
transform: "translateX(-170px)"
};
};
+const timelineList = ref([{ name: 1 }]);
+const addSituation = () => {
+ timelineList.value.push({
+ name: 1
+ });
+};
+const auditVisible = ref(false);
// 监听父组件的visible,用来简介控制el-dialog的弹框开关,一般是用于开
watch(
() => props.detailsDialog,
@@ -281,6 +328,35 @@ onMounted(() => {
margin-left: 5px;
}
}
+ .situation-step {
+ margin-top: 20px;
+ .row {
+ span:nth-child(1) {
+ text-align: left;
+ }
+ }
+ :deep(.el-timeline-item) {
+ position: relative;
+ padding-bottom: 14px !important;
+ }
+ .status-name {
+ position: absolute;
+ right: 0;
+ top: 0;
+ font-size: 12px;
+ font-family: Source Han Sans CN-Regular, Source Han Sans CN;
+ font-weight: 400;
+ color: #30ac7c;
+ }
+ .status-operate {
+ position: absolute;
+ right: 0;
+ bottom: -10px;
+ }
+ }
+ }
+ .audit-title {
+ border-left: 2px solid #0f81ff !important;
}
}