From 7f1956cafa4bbc08e67713e7bfeb1748b9e588b0 Mon Sep 17 00:00:00 2001
From: odc.xiaohui <xiaohui@Q1>
Date: 星期二, 21 二月 2023 17:09:01 +0800
Subject: [PATCH] 2023/2/21 肖辉 修改消息删除错误,添加发布系统

---
 src/components/illdetail/index.vue |   14 ++++++++++----
 1 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/components/illdetail/index.vue b/src/components/illdetail/index.vue
index fee547e..fc24c26 100644
--- a/src/components/illdetail/index.vue
+++ b/src/components/illdetail/index.vue
@@ -130,7 +130,7 @@
           <MyFilePicture
             v-else-if="activeIndex === 2"
             :filesPictureVo="filesPictureVo"
-            :mycode='mycode'
+            :mycode="mycode"
           ></MyFilePicture>
           <MySovleProblem
             v-else-if="activeIndex === 3"
@@ -198,10 +198,10 @@
   },
   methods: {
     changeComponent(index) {
-      this.activeIndex = index; 
+      this.activeIndex = index;
     },
   },
-  props: ["info","mycode"],
+  props: ["info", "mycode"],
 };
 </script>
 <style lang="scss" scoped>
@@ -222,6 +222,12 @@
       display: flex;
       // justify-content: space-between;
       line-height: 20px;
+
+      .data-detail {
+        line-height: 1.8;
+        max-width: 240px;
+        display: inline-grid;
+      }
     }
 
     border: 1px solid #17324c;
@@ -268,7 +274,7 @@
       height: 600px;
       position: relative;
       .show-wrap {
-        overflow: scroll;
+        overflow: auto;
         height: 600px;
       }
     }

--
Gitblit v1.8.0