From 7c124560b27add087b4aa8fc457de1e84f950d9c Mon Sep 17 00:00:00 2001
From: liuyg <376836862@qq.com>
Date: Tue, 23 Nov 2021 15:19:33 +0800
Subject: [PATCH] 样式 (1:搜索按钮放入右侧,2:隐藏表格显影按钮,3:页码改为(15,30,50,100))
---
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