Parcourir la source

显隐列初始默认隐藏列

RuoYi il y a 5 ans
Parent
commit
27d137a4ae
1 fichiers modifiés avec 8 ajouts et 1 suppressions
  1. 8 1
      ruoyi-ui/src/components/RightToolbar/index.vue

+ 8 - 1
ruoyi-ui/src/components/RightToolbar/index.vue

@@ -43,7 +43,14 @@ export default {
43 43
       type: Array,
44 44
     },
45 45
   },
46
-
46
+  created() {
47
+    // 显隐列初始默认隐藏列
48
+    for (let item in this.columns) {
49
+      if (this.columns[item].visible === false) {
50
+        this.value.push(parseInt(item));
51
+      }
52
+    }
53
+  },
47 54
   methods: {
48 55
     // 搜索
49 56
     toggleSearch() {