Browse Source

wanda-adm:feat > 删除表格轮廓线展示,表头添加单位

shaun-sheep 4 years ago
parent
commit
9f6070640f
1 changed files with 7 additions and 7 deletions
  1. 7 7
      src/components/public/adm-multi-table.vue

+ 7 - 7
src/components/public/adm-multi-table.vue

@@ -33,7 +33,7 @@
 
 <script lang="ts">
 import { ElTable } from "element-ui/types/table";
-import { Component, Prop, Ref, Vue } from "vue-property-decorator";
+import { Component, Prop, Ref, Vue, Watch } from "vue-property-decorator";
 @Component({
     name: "adm-multi-table",
 })
@@ -50,12 +50,12 @@ export default class extends Vue {
         console.log(index, row);
     }
 
-    // @Watch("headersStage", { immediate: true, deep: true })
-    // onCurrentHeaderChange() {
-    //     this.$nextTick(() => {
-    //         this.tableDom.doLayout();
-    //     });
-    // }
+    @Watch("headersStage", { immediate: true, deep: true })
+    onCurrentHeaderChange() {
+        this.$nextTick(() => {
+            this.tableDom.doLayout();
+        });
+    }
 }
 </script>