From f85a4ce32be6d6f5e24f2060c4217255f894972d Mon Sep 17 00:00:00 2001
From: dataeaseShu <106045316+dataeaseShu@users.noreply.github.com>
Date: Wed, 8 Feb 2023 15:36:07 +0800
Subject: [PATCH 1/7] =?UTF-8?q?feat:=20=E8=A1=80=E7=BC=98=E5=85=B3?=
=?UTF-8?q?=E7=B3=BB=E6=B7=BB=E5=8A=A0=E6=BB=9A=E5=8A=A8=20=E9=80=89?=
=?UTF-8?q?=E4=B8=AD=E7=8A=B6=E6=80=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../system/relationship/consanguinity.vue | 68 ++++++++++++++++---
1 file changed, 58 insertions(+), 10 deletions(-)
diff --git a/frontend/src/views/system/relationship/consanguinity.vue b/frontend/src/views/system/relationship/consanguinity.vue
index 63a5eb0680..769290965e 100644
--- a/frontend/src/views/system/relationship/consanguinity.vue
+++ b/frontend/src/views/system/relationship/consanguinity.vue
@@ -1,5 +1,7 @@
-
+
diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js
index 72622c1890..1b8bed91f8 100644
--- a/frontend/src/store/index.js
+++ b/frontend/src/store/index.js
@@ -152,7 +152,8 @@ const data = {
},
previewVisible: false,
previewComponentData: [],
- currentCanvasNewId: []
+ currentCanvasNewId: [],
+ lastViewRequestInfo: {}
},
mutations: {
...animation.mutations,
@@ -610,6 +611,9 @@ const data = {
resetViewEditInfo(state) {
state.panelViewEditInfo = {}
},
+ setLastViewRequestInfo(state, viewRequestInfo) {
+ state.lastViewRequestInfo[viewRequestInfo.viewId] = viewRequestInfo.requestInfo
+ },
removeCurBatchComponentWithId(state, id) {
for (let index = 0; index < state.curBatchOptComponents.length; index++) {
const element = state.curBatchOptComponents[index]
From 157d66523f0d06d7f547fedfad8d0e086e88cdab Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Thu, 9 Feb 2023 11:11:04 +0800
Subject: [PATCH 5/7] =?UTF-8?q?fix(=E4=BB=AA=E8=A1=A8=E6=9D=BF):=20?=
=?UTF-8?q?=E8=A1=A8=E6=A0=BC=E6=98=8E=E7=BB=86=E5=AF=BC=E5=87=BA=E5=8E=BB?=
=?UTF-8?q?=E6=8E=89=E5=BA=95=E9=83=A8=E6=97=A0=E7=94=A8=E7=BF=BB=E9=A1=B5?=
=?UTF-8?q?=E7=BB=84=E4=BB=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/components/canvas/customComponent/UserView.vue | 1 +
1 file changed, 1 insertion(+)
diff --git a/frontend/src/components/canvas/customComponent/UserView.vue b/frontend/src/components/canvas/customComponent/UserView.vue
index 74d5ca469e..da4713b75f 100644
--- a/frontend/src/components/canvas/customComponent/UserView.vue
+++ b/frontend/src/components/canvas/customComponent/UserView.vue
@@ -915,6 +915,7 @@ export default {
tableChart.customAttr.color.tableHeaderFontColor = '#7c7e81'
tableChart.customAttr.color.tableFontColor = '#7c7e81'
tableChart.customAttr.color.tableStripe = true
+ tableChart.customAttr.size.tablePageMode = 'pull'
tableChart.customStyle.text.show = false
tableChart.customAttr = JSON.stringify(tableChart.customAttr)
tableChart.customStyle = JSON.stringify(tableChart.customStyle)
From 4dc3e3d8770f37b61ec28c2a31753c4a12e2628c Mon Sep 17 00:00:00 2001
From: wangjiahao <1522128093@qq.com>
Date: Thu, 9 Feb 2023 15:55:32 +0800
Subject: [PATCH 6/7] =?UTF-8?q?refactor(=E6=95=B0=E6=8D=AE=E9=9B=86):=20?=
=?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=9B=86=E5=AF=BC=E5=87=BA=E6=9D=83=E9=99=90?=
=?UTF-8?q?=E7=94=B1=E7=AE=A1=E7=90=86=E6=9D=83=E9=99=90=E6=8E=A7=E5=88=B6?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
frontend/src/views/dataset/data/ViewTable.vue | 23 +++++++++++--------
1 file changed, 14 insertions(+), 9 deletions(-)
diff --git a/frontend/src/views/dataset/data/ViewTable.vue b/frontend/src/views/dataset/data/ViewTable.vue
index 72c9a87188..feaf71e105 100644
--- a/frontend/src/views/dataset/data/ViewTable.vue
+++ b/frontend/src/views/dataset/data/ViewTable.vue
@@ -17,14 +17,14 @@
v-if="table.mode === 0"
class="de-tag primary"
>{{
- $t('dataset.direct_connect')
- }}
+ $t('dataset.direct_connect')
+ }}
{{
- $t('dataset.sync_data')
- }}
+ $t('dataset.sync_data')
+ }}
{{ $t('dataset.dataset_sync') }}
-
+
{{ $t('dataset.create_by') }}
:{{ table.creatorName || 'N/A' }}
-
+
{{ $t('dataset.excel_replace') + $t('chart.chart_data') }}
-
+
{{ $t('dataset.excel_add') + $t('chart.chart_data') }}
@@ -220,7 +221,7 @@
>
@@ -233,7 +234,8 @@
{{ $t('dataset.cancel') }}
+ >{{ $t('dataset.cancel') }}
+
Date: Thu, 9 Feb 2023 17:14:28 +0800
Subject: [PATCH 7/7] =?UTF-8?q?perf(=E7=99=BB=E5=BD=95):=20=E5=8F=8A?=
=?UTF-8?q?=E6=97=B6=E5=88=A0=E9=99=A4=E5=BA=9F=E5=BC=83=E7=9A=84token?=
=?UTF-8?q?=E7=BC=93=E5=AD=98?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
backend/src/main/java/io/dataease/auth/filter/JWTFilter.java | 2 ++
1 file changed, 2 insertions(+)
diff --git a/backend/src/main/java/io/dataease/auth/filter/JWTFilter.java b/backend/src/main/java/io/dataease/auth/filter/JWTFilter.java
index 464e0c0979..973b0fced2 100644
--- a/backend/src/main/java/io/dataease/auth/filter/JWTFilter.java
+++ b/backend/src/main/java/io/dataease/auth/filter/JWTFilter.java
@@ -71,9 +71,11 @@ public class JWTFilter extends BasicHttpAuthenticationFilter {
}
// 当没有出现登录超时 且需要刷新token 则执行刷新token
if (JWTUtils.loginExpire(authorization)) {
+ TokenCacheUtils.remove(authorization);
throw new AuthenticationException(expireMessage);
}
if (JWTUtils.needRefresh(authorization)) {
+ TokenCacheUtils.remove(authorization);
authorization = refreshToken(request, response);
}
JWTToken token = new JWTToken(authorization);