From dc252ad2bd275f697c266e3c8b10cb7d540fdcaa Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Wed, 16 Feb 2022 17:08:11 +0800
Subject: [PATCH] 44个表格在1366*768下的适配,保安员管理-》保安员查询中操作栏更改,在用户表左侧控制栏同步高

---
 src/views/authority/datascope.vue |   15 +++++++++++++--
 1 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/src/views/authority/datascope.vue b/src/views/authority/datascope.vue
index cfb9cab..7bec977 100644
--- a/src/views/authority/datascope.vue
+++ b/src/views/authority/datascope.vue
@@ -1,6 +1,12 @@
 <template>
-  <basic-container>
+  <basic-container
+    :class="[
+      $store.state.control.screenSize == 1366 ? 'smallSize' : 'normalSize',
+      $store.state.control.windowWidth >= 1024 ? 'tooRowSearch1' : '',
+    ]"
+  >
     <avue-crud
+      class="tablesss"
       :option="option"
       :table-loading="loading"
       :data="data"
@@ -115,6 +121,7 @@
         pageSize: 10,
         currentPage: 1,
         total: 0,
+        ...this.$store.state.control.changePageSize,
       },
       drawerVisible: false,
       direction: "rtl",
@@ -142,6 +149,7 @@
         delBtn: false,
         menuWidth: 150,
         dialogClickModal: false,
+        ...this.$store.state.control.clearOtherBut,
         column: [
           {
             label: "菜单名称",
@@ -465,6 +473,9 @@
       return ids.join(",");
     },
   },
+  mounted() {
+    this.$store.commit("setWindowSizeHeightAdd");
+  },
   methods: {
     initScope() {
       const scopeType = func.toInt(this.formScope.scopeType);
@@ -617,6 +628,7 @@
       getLazyMenuList(this.parentId, Object.assign(params, this.query)).then(
         (res) => {
           this.data = res.data.data;
+          this.$store.commit("setWindowSizeHeightAdd");
           this.loading = false;
           this.selectionClear();
         }
@@ -768,4 +780,3 @@
   },
 };
 </script>
-

--
Gitblit v1.9.3