洪海涛 4 anni fa
parent
commit
697a277e1c

+ 14 - 7
src/views/monthlyReport/childrenPage/editReport/components/MrTable/TableExpandRow.vue

@@ -31,7 +31,7 @@
           <!--改进项: 其他-->
           <div class="description-wrapper">
             <!--改进项: 责任人-->
-            <span style="min-width: 125px;display: inline-block;">责任人:<span v-if="!subItem.personInCharge || !subItem.personInCharge.length">暂无负责人</span>
+            <span style="min-width: 50px;display: inline-block;"><span class="new-title">责任人:</span><span v-if="!subItem.personInCharge || !subItem.personInCharge.length">暂无负责人</span>
               <MultiplePeopleInfo
                 v-else
                 style="display:inline-block "
@@ -44,7 +44,7 @@
             <span
               class="progress-wrapper"
               :style="{ width: !subItem.isProgressEdit ? '300px' : '380px' }"
-            >进度:<span v-if="!subItem.isProgressEdit">{{
+            ><span class="new-title">进度:</span><span v-if="!subItem.isProgressEdit">{{
                 subItem.progress || '0'
               }}</span
             ><span v-else>
@@ -100,7 +100,7 @@
       </div>
       <Hold ref="Hold" @upData="upHold" />
     </div>
-    <div v-else style="padding-bottom: 10px;padding-left: 0px;font-size: 14px">暂无分析反馈数据!</div>
+    <div v-else style="padding-bottom: 10px;padding-left: 0;font-size: 14px">暂无分析反馈数据!</div>
   </div>
 </template>
 
@@ -271,7 +271,7 @@ export default {
     color: #1890ff;
     display: inline-block;
     // width: 50px;
-    margin: 0 50px;
+    margin: 0 20px 0 50px;
     // margin-right: 10px;
     cursor: pointer;
   }
@@ -281,14 +281,21 @@ export default {
     display: inline-block;
     cursor: pointer;
   }
-
+.new-title{
+  color: #666666;
+}
   // .description-wrapper {
   // }
   // .item-problem {
   // }
   // .item-reason {
   // }
-  // .improvementItems-wrapper {
-  // }
+   .improvementItems-wrapper {
+     margin-bottom: 20px;
+     padding-left: 28px;
+     &:last-child{
+       margin-bottom: 0;
+     }
+   }
 }
 </style>