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/securityUnit/localCompany.vue | 13 ++++++++++++-
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/src/views/securityUnit/localCompany.vue b/src/views/securityUnit/localCompany.vue
index d344be2..268682b 100644
--- a/src/views/securityUnit/localCompany.vue
+++ b/src/views/securityUnit/localCompany.vue
@@ -1,6 +1,11 @@
<template>
<basic-container>
- <div class="securityUnit">
+ <div
+ :class="[
+ 'securityUnit',
+ $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+ ]"
+ >
<avue-crud
:option="option"
:data="data"
@@ -158,6 +163,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
treeData: [],
@@ -193,6 +199,7 @@
submitBtn: true,
gutter: 30,
column: column0,
+ ...this.$store.state.control.clearOtherBut,
},
obj1: {
title1: "保安单位出资人员",
@@ -202,6 +209,7 @@
submitBtn: false,
gutter: 30,
column: column1,
+ ...this.$store.state.control.clearOtherBut,
},
obj2: {
title2: "主要管理人员信息",
@@ -211,6 +219,7 @@
submitBtn: false,
gutter: 30,
column: column2,
+ ...this.$store.state.control.clearOtherBut,
},
forms: false,
@@ -238,6 +247,8 @@
align: "center",
selection: true,
column: column,
+ ...this.$store.state.control.clearOtherBut,
+ ...this.$store.state.control.clearOtherBut,
},
};
},
--
Gitblit v1.9.3