浏览代码

样式问题修改

1
mo 3 年之前
父节点
当前提交
f9a7a211f9

+ 6 - 6
src/views/resetTeaming/components/archicesComponents/studentAndTeacher.vue

@@ -320,10 +320,10 @@ export default {
   }
 }
 .descriptions {
-    margin-bottom: 30px;
+  margin-bottom: 30px;
   display: flex;
   flex-direction: row;
-    .col-value {
+  .col-value {
     color: #14928a;
     cursor: pointer;
   }
@@ -348,10 +348,6 @@ export default {
       text-align: center;
     }
     .descriptionItemConcat {
-      .col-value {
-        color: #14928a;
-        cursor: pointer;
-      }
       text-align: center;
       white-space: nowrap;
       overflow: hidden;
@@ -364,6 +360,10 @@ export default {
       display: table-cell;
       width: 50%;
     }
+    .col-value {
+      color: #14928a;
+      cursor: pointer;
+    }
   }
 }
 </style>

+ 5 - 2
src/views/resetTeaming/components/archicesComponents/trainPlan.vue

@@ -116,9 +116,9 @@
           >
             {{ item.index }}
             <div class="timeline">
-              <h4 class="time">{{ item.timer || "暂无课程时间" }}</h4>
+              <h4 class="time" :class="item.timer?'':'grey'">{{ item.timer || "暂无课程时间" }}</h4>
               <p class="cuorseType">{{ item.courseType }}</p>
-              <p class="concat">
+              <p class="concat" :class="item.plan.value?'':'grey'">
                 <Tooltip :content="item.plan.value || '暂无规划'" />
               </p>
               <auth auths="musicGroupTrainPlan/update">
@@ -580,4 +580,7 @@ export default {
 .searchForm {
   padding: 0 16px;
 }
+.grey {
+  color: #999;
+}
 </style>