From e5b1d3588dfe66ecd659ba1a6f9d2d410b4e0cd0 Mon Sep 17 00:00:00 2001
From: rk <94314517@qq.com>
Date: 星期五, 26 九月 2025 15:42:37 +0800
Subject: [PATCH] 钉钉 部门信息同步 与 主动推送
---
admin/src/store/index.js | 13 +++++++++++--
1 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/admin/src/store/index.js b/admin/src/store/index.js
index fd55430..6825b73 100644
--- a/admin/src/store/index.js
+++ b/admin/src/store/index.js
@@ -5,11 +5,18 @@
const state = {
// 鐧诲綍鐢ㄦ埛淇℃伅
userInfo: null,
+ tableHeightNew: 300,
primaryColor: '#2080f7',
// 棣栭〉
homePage: null,
// 鑿滃崟
menuData: {
+ // 鑿滃崟鍒楄〃
+ list: [],
+ // 鏄惁鏀惰捣
+ collapse: false
+ },
+ topMenuList: {
// 鑿滃崟鍒楄〃
list: [],
// 鏄惁鏀惰捣
@@ -38,7 +45,9 @@
...data
}
},
-
+ setTableHeightNew: (state, data) => {
+ state.tableHeightNew = data
+ },
clearUserInfo: (state) => {
state.userInfo = null
},
@@ -60,7 +69,7 @@
if (result === -1) {
state.tags.push({ ...val, keepAlive: false })
} else {
- state.tags[result] = { ...val, keepAlive: true }
+ state.tags[result] = { ...val, keepAlive: false }
}
// result === -1 ? state.tags.push(val) : (state.tags[result]==val)
},
--
Gitblit v1.9.3