From ca8e7b33feb6a1b9d062cec18457c38325679a5c Mon Sep 17 00:00:00 2001 From: linhaojun Date: Sat, 5 Nov 2022 19:12:43 +0800 Subject: [PATCH 1/4] =?UTF-8?q?:art:=20=E4=BC=98=E5=8C=96=E4=BB=A3?= =?UTF-8?q?=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aurora-vue/aurora-admin/src/store/index.js | 26 +++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/aurora-vue/aurora-admin/src/store/index.js b/aurora-vue/aurora-admin/src/store/index.js index 987e315..30552d1 100644 --- a/aurora-vue/aurora-admin/src/store/index.js +++ b/aurora-vue/aurora-admin/src/store/index.js @@ -14,7 +14,13 @@ export default new Vuex.Store({ articleList: 1, category: 1, tag: 1, - comment: 1 + comment: 1, + talkList: 1, + user: 1, + online: 1, + role: 1, + quartz: 1, + friendLinks: 1 } }, mutations: { @@ -64,6 +70,24 @@ export default new Vuex.Store({ }, updateCommentPageState(state, current) { state.pageState.comment = current + }, + updateTalkListPageState(state, current) { + state.pageState.talkList = current + }, + updateUserPageState(state, current) { + state.pageState.user = current + }, + updateOnlinePageState(state, current) { + state.pageState.online = current + }, + updateRolePageState(state, current) { + state.pageState.role = current + }, + updateQuartzPageState(state, current) { + state.pageState.quartz = current + }, + updateFriendLinkPageState(state, current) { + state.pageState.current = current } }, actions: {}, From ba875c4cc6c43c2f66dbf34b199545f23068daff Mon Sep 17 00:00:00 2001 From: linhaojun857 Date: Sat, 5 Nov 2022 20:32:24 +0800 Subject: [PATCH 2/4] =?UTF-8?q?:sparkles:=20=E6=9B=B4=E6=96=B0=E5=86=85?= =?UTF-8?q?=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index bf5d05e..00d559d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,6 @@ ## 前言 - 开源不易,希望大家star支持一下 -- 如有bug,欢迎提issue或者pr ## 在线地址 From 509e60286cc91dcdfa95af69b063b51ca8f12c04 Mon Sep 17 00:00:00 2001 From: linhaojun857 Date: Sat, 5 Nov 2022 20:33:35 +0800 Subject: [PATCH 3/4] =?UTF-8?q?:sparkles:=20=E6=9B=B4=E6=96=B0=E5=86=85?= =?UTF-8?q?=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aurora.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aurora.sql b/aurora.sql index 9b90ca1..573998b 100644 --- a/aurora.sql +++ b/aurora.sql @@ -114,8 +114,8 @@ CREATE TABLE `t_job` ( `invoke_target` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '调用目标字符串', `cron_expression` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT 'cron执行表达式', `misfire_policy` tinyint(1) NULL DEFAULT 3 COMMENT '计划执行错误策略(1立即执行 2执行一次 3放弃执行)', - `concurrent` tinyint(1) NULL DEFAULT 1 COMMENT '是否并发执行(0允许 1禁止)', - `status` tinyint(1) NULL DEFAULT 0 COMMENT '状态(0正常 1暂停)', + `concurrent` tinyint(1) NULL DEFAULT 1 COMMENT '是否并发执行(0禁止 1允许)', + `status` tinyint(1) NULL DEFAULT 0 COMMENT '状态(0暂停 1正常)', `create_time` datetime NOT NULL COMMENT '创建时间', `update_time` datetime NULL DEFAULT NULL COMMENT '更新时间', `remark` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT '' COMMENT '备注信息', From 40049b26dba93c1a8523490459035d100acf2a99 Mon Sep 17 00:00:00 2001 From: linhaojun857 Date: Sat, 5 Nov 2022 20:35:28 +0800 Subject: [PATCH 4/4] =?UTF-8?q?:sparkles:=20=E6=9B=B4=E6=96=B0=E5=86=85?= =?UTF-8?q?=E5=AE=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 项目部署文档.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/项目部署文档.md b/项目部署文档.md index 5842831..c137afe 100644 --- a/项目部署文档.md +++ b/项目部署文档.md @@ -1,5 +1,7 @@ ## 1.服务器要求 +> 下面的建议不包含minio的内存占用,如需使用minio,请另外考虑 + 1. 核心数和内存大小有两种方案: - 2核4G(使用ES搜索策略) - 2核2G(使用MySQL搜素策略)