guoxiaohuan 5 years ago
parent
commit
2bfcb7f2a3
2 changed files with 6 additions and 3 deletions
  1. 1 1
      src/views/evaluate/evTwoLevelMenu.vue
  2. 5 2
      src/views/evaluate/evTwoTable.vue

+ 1 - 1
src/views/evaluate/evTwoLevelMenu.vue

@@ -149,7 +149,7 @@ export default {
             }
             // isSatisfy:this.value2
             let getParams = {
-                isSatisfy: this.value2
+                isSatisfy: !this.value2
             }
             this.tindoorFillRate = ''
             queryTdbDay(date, { getParams }).then(res => {

+ 5 - 2
src/views/evaluate/evTwoTable.vue

@@ -16,8 +16,10 @@
                     <el-table-column type='selection' width='50' align='center'></el-table-column>
                     <el-table-column prop label align='right'>
                         <template slot-scope='{row}'>
-                            <img class='ex-img' v-if='row.isSatisfy==false' src='../../assets/warning.png' alt />
-                            <span class='ex-span' style='width:180px;display:inline-block'>{{row.spaceLocalName}}</span>
+                            <div style='display:flex'>
+                                <img class='ex-img' v-if='row.isSatisfy==false' src='../../assets/warning.png' alt />
+                                <span class='ex-span' style='width:180px;display:inline-block'>{{row.spaceLocalName}}</span>
+                            </div>
                         </template>
                     </el-table-column>
                     <el-table-column prop label align='right'>
@@ -108,6 +110,7 @@ export default {
         width: 22px;
         height: 22px;
         vertical-align: middle;
+        margin-right: 3px;
     }
     .ex-span {
         width: 50px;