Browse Source

fix:周报均数据过滤

guotianliang 4 years ago
parent
commit
c62bc300e9
2 changed files with 8 additions and 1 deletions
  1. 6 0
      src/App.vue
  2. 2 1
      src/views/ReportForm/weekReport/reportDetail.vue

+ 6 - 0
src/App.vue

@@ -17,4 +17,10 @@
     width: 1200px;
     margin: 0 auto;
 }
+/* .el-table__header{
+    width: 100% !important;
+}
+.el-table__body{
+    width: 100% !important;
+} */
 </style>

+ 2 - 1
src/views/ReportForm/weekReport/reportDetail.vue

@@ -1305,6 +1305,7 @@ export default {
                             item.serviceTime = stringnumber.indexOf('.')=== -1?item.serviceTime:item.serviceTime.toFixed(2);
                         }
                     })
+                    res.content=res.content.filter(item=>{return item.avgTemp!=='--'})
                 }
                 if(value==="hotProprotion"){
                     this.hotgirdDate=res.content||[];
@@ -1606,7 +1607,7 @@ export default {
         background: #ffffff;
         // overflow: hidden;
         border-radius: 8px;
-        padding: 24px 0  48px 20px;
+        padding: 24px 20px  48px 20px;
         & /deep/ .el-table thead>tr{
             background: #F8F9FA;
         }