From d6da030bf9df3b26b2a7df90b3100b06ba18b42b Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Tue, 21 Dec 2021 16:48:19 +0800
Subject: [PATCH] 车辆装备修改
---
src/store/modules/control.js | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/store/modules/control.js b/src/store/modules/control.js
index 9bca772..d0526c8 100644
--- a/src/store/modules/control.js
+++ b/src/store/modules/control.js
@@ -10,13 +10,21 @@
searchShowBtn: false,
filterBtn: false,
},
+ changePageSize: {
+ pageSize: 15,
+ currentPage: 1,
+ total: 0,
+ pageSizes: [15, 30, 50, 100],
+ },
windowWidth: 1025,
+ windowHeight: '',
},
actions: {
},
mutations: {
setWindowSize: (state, data) => {
state.windowWidth = data.innerWidth;
+ state.windowHeight = data.innerHeight;
// console.log(data)
},
}
--
Gitblit v1.9.3