From 19e0b728e8cd41f9ddcd62eea6c15ebf769d9977 Mon Sep 17 00:00:00 2001
From: liuyg <liuyg@qq.com>
Date: Wed, 16 Feb 2022 18:04:10 +0800
Subject: [PATCH] +解决和冲突合并,加上适应1366*768分辨率

---
 src/views/licenseApproval/securityGuard.vue |   28 +++++++++++++++++-----------
 1 files changed, 17 insertions(+), 11 deletions(-)

diff --git a/src/views/licenseApproval/securityGuard.vue b/src/views/licenseApproval/securityGuard.vue
index 3bbaabe..2ab4b19 100644
--- a/src/views/licenseApproval/securityGuard.vue
+++ b/src/views/licenseApproval/securityGuard.vue
@@ -1,15 +1,17 @@
-/*
- * @Author: liu
- * @Date: 2021-08-26 16:57:58 
- * @Last Modified by: liu
- * @Last Modified time: 2021-11-05 14:16:49
- */
-
+/* * @Author: liu * @Date: 2021-08-26 16:57:58 * @Last Modified by: liu * @Last
+Modified time: 2021-11-05 14:16:49 */
 
 <template>
   <div>
-    <basic-container class="permit">
+    <basic-container
+      :class="[
+        'permit',
+        $store.state.control.screenSize == 1366 ? 'smallSize' : 'normalSize',
+        $store.state.control.windowWidth >= 1024 ? 'tooRowSearch1' : '',
+      ]"
+    >
       <avue-crud
+        class="tablesss"
         :option="option"
         :table-loading="loading"
         :data="data"
@@ -280,6 +282,7 @@
         pageSize: 10,
         currentPage: 1,
         total: 0,
+        ...this.$store.state.control.changePageSize,
       },
       selectionList: [],
       option: {
@@ -300,6 +303,7 @@
         viewBtn: true,
         selection: true,
         dialogClickModal: false,
+        ...this.$store.state.control.clearOtherBut,
         column: column,
       },
       data: [],
@@ -328,9 +332,10 @@
       return ids.join(",");
     },
   },
-  // mounted() {
-  //     console.log(this.userInfo.dept_id);
-  // },
+  mounted() {
+    this.$store.commit("setWindowSizeHeightAdd");
+    //     console.log(this.userInfo.dept_id);
+  },
   methods: {
     Printhuizhi() {
       this.$Print(this.$refs.licencehuizhi);
@@ -590,6 +595,7 @@
           // console.log(this.changeState(this.data[k]));
           this.data[k] = this.changeState(this.data[k]);
         }
+        this.$store.commit("setWindowSizeHeightAdd");
         this.loading = false;
         this.selectionClear();
       });

--
Gitblit v1.9.3