From 21c7375b7b38ebf2c8a2ca8fbf6fe9fb4f28250f Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Wed, 12 Jan 2022 10:59:40 +0800
Subject: [PATCH] 新增公司注册机公司注册审核

---
 src/views/workreport/workreply.vue |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/views/workreport/workreply.vue b/src/views/workreport/workreply.vue
index d247fc5..64f0386 100644
--- a/src/views/workreport/workreply.vue
+++ b/src/views/workreport/workreply.vue
@@ -1,5 +1,7 @@
 <template>
-  <basic-container>
+  <basic-container
+    :class="[$store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '']"
+  >
     <avue-crud
       :option="option"
       :table-loading="loading"
@@ -69,6 +71,7 @@
         pageSize: 10,
         currentPage: 1,
         total: 0,
+        ...this.$store.state.control.changePageSize,
       },
       selectionList: [],
       option: {
@@ -90,6 +93,7 @@
         menuWidth: 320,
         dialogClickModal: false,
         column: workreplyColumn,
+        ...this.$store.state.control.clearOtherBut,
       },
       data: [],
     };
@@ -99,9 +103,9 @@
     permissionList() {
       return {
         addBtn: this.vaildData(null, false),
-        viewBtn: this.vaildData(this.permission.notice_view, false),
+        viewBtn: this.vaildData(this.permission.workreply_view, false),
         delBtn: this.vaildData(null, false),
-        editBtn: this.vaildData(this.permission.notice_edit, false),
+        editBtn: this.vaildData(this.permission.workreply_edit, false),
       };
     },
     ids() {

--
Gitblit v1.9.3