Browse Source

月报设置:间距调整

洪海涛 4 years ago
parent
commit
8ce291a26d

+ 1 - 0
src/views/monthlyReport/childrenPage/editReport/components/TableExpandRow.vue

@@ -153,6 +153,7 @@ export default {
   // border-bottom: 1px solid #EBEEF5;
   padding-bottom: 10px;
   margin-bottom: 10px;
+  font-size: 14px;
   &::after {
     content: '';
     position: absolute;

+ 7 - 1
src/views/monthlyReport/childrenPage/editReport/components/core.vue

@@ -9,13 +9,17 @@
     <div
       v-if="baseData.type.search(/Head2|Head3/) > -1"
       :id="baseData.domKey"
-      :style="{ marginTop: baseData.type === 'head3' ? '0' : '10.2px' }"
+      :style="{
+        marginTop: baseData.type === 'head3' ? '0' : '10.3px',
+        marginBottom: '10px'
+      }"
     >
       <!-- 不是业务线 -->
       <span
         v-if="fontWeightFont.indexOf(baseData.title) < 0"
         :style="{
           color: '#333',
+          marginBottom: '10px',
           fontWeight: fontWeightFont.indexOf(baseData.title) > -1 ? 500 : 400
         }"
         v-html="headerIndex"
@@ -23,11 +27,13 @@
       <SubTitle
         v-if="headerTitle.indexOf('线下缺陷') > -1"
         :sub-title="baseData.subTitles"
+        style="margin-bottom: 10px;"
       />
       <span
         v-else-if="isSHowContent()"
         :style="{
           color: '#333',
+          marginBottom: '10px',
           fontWeight: fontWeightFont.indexOf(baseData.title) > -1 ? 500 : 400
         }"
         v-html="headerTitle"