root 1 yıl önce
ebeveyn
işleme
08d2beb0a3
1 değiştirilmiş dosya ile 28 ekleme ve 13 silme
  1. 28 13
      src/renderer/components/Evaluation.vue

+ 28 - 13
src/renderer/components/Evaluation.vue

@@ -1,5 +1,5 @@
 <template>
-  <div style="height: 100vh; overflow-y: auto !important;background:#ffffff">
+  <div style="height: 100vh; overflow-y: auto !important; background: #ffffff">
     <!-- <el-button type="primary" size="small" round @click="goBack()">返回</el-button> -->
     <el-row>
       <el-col :span="1">
@@ -57,13 +57,14 @@
     <el-row>
       <el-col :span="1"> &nbsp; </el-col>
       <el-col :span="22">
-        <div style='height:70vh ;overflow-y: auto !important' >
+        <div style="height: 70vh; overflow-y: auto !important">
           <div
+            class="scale_item"
             style="display: flex; margin-bottom: 20px"
             v-for="(item, index) in scaleList"
             :key="index"
           >
-            <img class="xl_img" width="100px" height="80px" :src="item.src" />
+            <img class="xl_img" :src="item.src" />
             <!-- <span>简明精神病量表</span> -->
             <div style="display: block">
               <span class="xl_title">{{ item.name }}</span>
@@ -242,17 +243,21 @@ export default {
   -webkit-line-clamp: 2;
   word-break: break-all;
   min-width: 100px;
-  color: #999999;
-  font-size: 13px;
-  height: 35px;
+  font-size: 0.9vw;
+  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
+  font-weight: 400;
+  color: #929292;
 }
 .xl_img {
-  margin-right: 5px;
+  width: 7.6vw;
+  height: auto;
+  margin-right: 2.1vw;
 }
 .xl_title {
-  font-size: 16px;
-  font-weight: 400;
-  color: #000000;
+  font-size: 1.2vw;
+  font-family: Source Han Sans CN-Bold, Source Han Sans CN;
+  font-weight: bold;
+  color: #0f0f0f;
   display: block;
   margin-bottom: 5px;
 }
@@ -262,9 +267,10 @@ export default {
   font-size: 11px;
 }
 .xl_test {
-  color: #999999;
-  font-weight: 500;
-  font-size: 11px;
+  font-size: 0.8vw;
+  font-family: Source Han Sans CN-Regular, Source Han Sans CN;
+  font-weight: 400;
+  color: #0f0f0f;
 }
 .xl_detail {
   cursor: pointer;
@@ -273,4 +279,13 @@ export default {
   color: #57acbb;
   line-height: 30px;
 }
+
+.xl_input {
+  margin-top: 3vh;
+}
+
+.scale_item {
+  border-bottom: 1px solid #bbc5d4;
+  padding: 2.2vh 0;
+}
 </style>