From d1b058faa19088838b668d6c03dd71c2bcc7d5d3 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 09 Dec 2021 10:30:44 +0800
Subject: [PATCH] 用户角色控制修改
---
src/views/securityUnitChild/index.vue | 21 +++++++++++++++++++--
1 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/src/views/securityUnitChild/index.vue b/src/views/securityUnitChild/index.vue
index 7d3a1b6..e72e2bb 100644
--- a/src/views/securityUnitChild/index.vue
+++ b/src/views/securityUnitChild/index.vue
@@ -142,7 +142,13 @@
<!-- </span> -->
</el-tab-pane>
<!-- <span v-else-if="typeTABS.prop === 'tab2'" class="tab"> -->
- <el-tab-pane label="保安单位出资人员" name="tab2">
+ <el-tab-pane
+ label="保安单位出资人员"
+ name="tab2"
+ :class="[
+ $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+ ]"
+ >
<basic-container>
<avue-crud
:option="option1"
@@ -182,7 +188,13 @@
<!-- </span> -->
</el-tab-pane>
<!-- <span v-else-if="typeTABS.prop === 'tab3'" class="tab"> -->
- <el-tab-pane label="主要管理人员信息" name="tab3">
+ <el-tab-pane
+ label="主要管理人员信息"
+ name="tab3"
+ :class="[
+ $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+ ]"
+ >
<basic-container>
<avue-crud
:option="option2"
@@ -405,6 +417,7 @@
excelOption1: {
submitBtn: false,
emptyBtn: false,
+ ...this.$store.state.control.clearOtherBut,
column: [
{
label: "文件上传",
@@ -512,6 +525,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
query1: {},
data1: [],
@@ -524,6 +538,7 @@
menuWidth: 200,
align: "center",
selection: true,
+ ...this.$store.state.control.clearOtherBut,
column: column1,
},
@@ -533,6 +548,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
query2: {},
data2: [],
@@ -546,6 +562,7 @@
menuAlign: "center",
align: "center",
selection: true,
+ ...this.$store.state.control.clearOtherBut,
column: column2,
},
};
--
Gitblit v1.9.3