qinzhipeng_v@didiglobal.com 4 years ago
parent
commit
a23d6d71ca

+ 7 - 3
src/views/monthlyReport/childrenPage/setReport/components/general.vue

@@ -7,7 +7,7 @@
         <searchPeople :value.sync="monthlySponsor.sponsors" :multiple="true" :size="'small'" style="width: 100%;" />
       </template>
       <template slot="overMouse">
-        <span style="color: #333333;">{{ sponsorList.join(',') }}</span>
+        <span class="report-left-margin">{{ sponsorList.join(',') }}</span>
       </template>
     </over-click>
 
@@ -52,7 +52,7 @@
                 <searchPeople :value.sync="i.Confirmation" :multiple="true" :size="'small'" style="width: 50%;" />
               </template>
               <template slot="overMouse">
-                <span style="color: #333333;">{{ i.confirmerNames ? i.confirmerNames.join(','): '' }}</span>
+                <span style="color: #333333;">{{ i.confirmerNames && i.confirmerNames.join(',') }}</span>
               </template>
             </over-click>
           </el-col>
@@ -105,7 +105,6 @@ export default {
       bizList: [], // 业务线List
       numberValidateForm: {},
       bizModules: [], // 点击的模块
-      generalSet: {},
       bool: true,
       monthlySponsor: {
         sponsors: null
@@ -188,6 +187,10 @@ export default {
 
 <style lang="scss" scoped>
 .reportSetting {
+  .report-left-margin {
+    color: #333333;
+    margin-left: 30px;
+  }
   >>>label {
       font-weight: 400;
     }
@@ -209,6 +212,7 @@ export default {
   .report-fromLabel {
     color: #666666;
     line-height: 32px;
+    padding-left: 30px;
   }
 }
 .report-bottom {