From 7434e5ccf889189d24e7f4e655fbf752a0883d5b Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Thu, 16 Dec 2021 19:23:58 +0800
Subject: [PATCH] 保安员查询修改
---
src/views/securityAnalysis/child/assignment.vue | 12 ++++++++++--
1 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/src/views/securityAnalysis/child/assignment.vue b/src/views/securityAnalysis/child/assignment.vue
index 7c72a76..0a4e94e 100644
--- a/src/views/securityAnalysis/child/assignment.vue
+++ b/src/views/securityAnalysis/child/assignment.vue
@@ -1,6 +1,11 @@
<template>
<basic-container>
- <div class="dispatchChildoperable">
+ <div
+ :class="[
+ 'dispatchChildoperable',
+ $store.state.control.windowWidth >= 1024 ? 'oneRowSearch' : '',
+ ]"
+ >
<avue-crud
:option="option1"
:data="data1"
@@ -95,6 +100,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
form1: {},
query1: {},
@@ -106,7 +112,7 @@
// menu: false,
searchSize: "mini",
searchMenuSpan: 8,
- height: 450,
+ height: "auto",
cellBtn: false,
delBtnText: "结束派遣",
editBtnText: "更改派遣",
@@ -116,6 +122,7 @@
menuWidth: 256,
align: "center",
selection: true,
+ ...this.$store.state.control.clearOtherBut,
column: [
// },
{
@@ -332,6 +339,7 @@
pageSize: 10,
currentPage: 1,
total: 0,
+ ...this.$store.state.control.changePageSize,
},
form2: {},
query2: {},
--
Gitblit v1.9.3