Explorar el Código

风机列表实时数据刷新,表格闪烁问题

wsy hace 3 años
padre
commit
a580a4dc99
Se han modificado 1 ficheros con 7 adiciones y 1 borrados
  1. 7 1
      src/components/coms/table/table2.vue

+ 7 - 1
src/components/coms/table/table2.vue

@@ -7,6 +7,7 @@
     style="width: 100%"
     @cell-click="onClick"
     @header-click="onHeaderClick"
+    ref="table"
   >
     <el-table-column
       v-for="(col, cindex) of data.column"
@@ -177,7 +178,12 @@ export default {
   mounted() {
     // 渲染后
   },
-  beforeUpdate() {},
+  beforeUpdate() {
+    this.$nextTick(() => { //在数据加载完,重新渲染表格
+      // 数据刷新是闪烁,加上这个就不闪了 
+      this.$refs['table'].doLayout();
+    })
+  },
   updated() {},
 };
 </script>