From b9503214b7ff2b74072ada42bc06321be23da6c2 Mon Sep 17 00:00:00 2001 From: junjun Date: Mon, 6 Nov 2023 11:25:14 +0800 Subject: [PATCH 1/3] test: front package test --- core/frontend/src/views/dataset/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/core/frontend/src/views/dataset/index.vue b/core/frontend/src/views/dataset/index.vue index 955cd6f713..79fc66a95c 100644 --- a/core/frontend/src/views/dataset/index.vue +++ b/core/frontend/src/views/dataset/index.vue @@ -58,6 +58,7 @@ export default { removeClass(document.body, 'showRightPanel') }, created() { + console.log('log test') this.initDs() this.$store.dispatch('app/toggleSideBarHide', true) const routerParam = this.$router.currentRoute.params From c6577689b8f3160fbd8ec6ac25041f10a80d85ae Mon Sep 17 00:00:00 2001 From: junjun Date: Mon, 6 Nov 2023 11:36:58 +0800 Subject: [PATCH 2/3] test: revert --- core/frontend/src/views/dataset/index.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/core/frontend/src/views/dataset/index.vue b/core/frontend/src/views/dataset/index.vue index 79fc66a95c..955cd6f713 100644 --- a/core/frontend/src/views/dataset/index.vue +++ b/core/frontend/src/views/dataset/index.vue @@ -58,7 +58,6 @@ export default { removeClass(document.body, 'showRightPanel') }, created() { - console.log('log test') this.initDs() this.$store.dispatch('app/toggleSideBarHide', true) const routerParam = this.$router.currentRoute.params From 617d4a24f5a5583542e2e59cfa971b766f57dd12 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Mon, 6 Nov 2023 14:45:41 +0800 Subject: [PATCH 3/3] =?UTF-8?q?feat:=20mobile=E9=A1=B5=E9=9D=A2=E7=99=BD?= =?UTF-8?q?=E5=90=8D=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/io/dataease/auth/service/impl/ShiroServiceImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/backend/src/main/java/io/dataease/auth/service/impl/ShiroServiceImpl.java b/core/backend/src/main/java/io/dataease/auth/service/impl/ShiroServiceImpl.java index e0d3031d17..abb33f111f 100644 --- a/core/backend/src/main/java/io/dataease/auth/service/impl/ShiroServiceImpl.java +++ b/core/backend/src/main/java/io/dataease/auth/service/impl/ShiroServiceImpl.java @@ -45,6 +45,7 @@ public class ShiroServiceImpl implements ShiroService { filterChainDefinitionMap.put("/link/**", ANON); filterChainDefinitionMap.put("/index.html", ANON); filterChainDefinitionMap.put("/link.html", ANON); + filterChainDefinitionMap.put("/mobile.html", ANON); filterChainDefinitionMap.put("/board/**", ANON); filterChainDefinitionMap.put("/websocket/**", ANON); filterChainDefinitionMap.put("/system/defaultLoginType", ANON);