From 8e3504b57fef7b1eda8b75ca8aca67bee3b200dc Mon Sep 17 00:00:00 2001
From: 钟日健 <5689795+arsn@user.noreply.gitee.com>
Date: Fri, 18 Mar 2022 10:19:44 +0800
Subject: [PATCH] 定时任务新增立即执行,恢复,暂停
---
src/store/modules/control.js | 15 ++++++++++-----
1 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/store/modules/control.js b/src/store/modules/control.js
index 20f6611..a7bb8d4 100644
--- a/src/store/modules/control.js
+++ b/src/store/modules/control.js
@@ -16,10 +16,10 @@
columnBtn: false,
searchShowBtn: false,
filterBtn: false,
- addBtn: false,
- editBtn: false,
- viewBtn: false,
- delBtn: false,
+ // addBtn: false,
+ // editBtn: false,
+ // viewBtn: false,
+ // delBtn: false,
searchIndex: 6, //收缩展示数量
searchIcon: true, //搜索是否收缩
height: window.screen.height //初始高度
@@ -44,7 +44,9 @@
searchIndex: 6, //收缩展示数量
searchIcon: true, //搜索是否收缩
height: window.screen.height //初始高度
- }
+ },
+ //面的集和点
+ polygons: [],
},
actions: {
WHchangeHight({
@@ -246,6 +248,9 @@
}
},
mutations: {
+ setpolygon: (state, data) => {
+ state.polygons = data;
+ },
setWindowSize: (state, data) => {
state.windowWidth = data.innerWidth;
state.windowHeight = data.innerHeight;
--
Gitblit v1.9.3