From 4bc6f82a237ad0b64d97535345bb073cdfb0c1ed Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 12 Dec 2023 15:10:18 +0800 Subject: [PATCH 1/3] =?UTF-8?q?fix:=20=E5=B0=8F=E5=B1=8F=E5=B9=95=E4=B8=8B?= =?UTF-8?q?=EF=BC=8C=E7=94=A8=E6=88=B7=E5=88=97=E8=A1=A8=E6=A8=AA=E5=90=91?= =?UTF-8?q?=E6=BB=91=E5=8A=A8=EF=BC=8C=E5=88=97=E8=A1=A8=E5=86=85=E5=AE=B9?= =?UTF-8?q?=E4=BC=9A=E4=B8=8E=E6=93=8D=E4=BD=9C=E6=8C=89=E9=92=AE=E9=87=8D?= =?UTF-8?q?=E5=8F=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/style/index.less | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/core-frontend/src/style/index.less b/core/core-frontend/src/style/index.less index 24289e7378..29dcc8aa6a 100644 --- a/core/core-frontend/src/style/index.less +++ b/core/core-frontend/src/style/index.less @@ -391,3 +391,8 @@ em { .color-datasource { background: rgb(127, 59, 246); } + +.ed-table { + --ed-table-row-hover-bg-color: #e8e9e9 !important; +} + From 653b3e55b137682064299d5866be4805833e6d60 Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 12 Dec 2023 15:38:16 +0800 Subject: [PATCH 2/3] =?UTF-8?q?fix:=20=E5=BB=BA=E8=AE=AE=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E9=9B=86=E7=9A=84=E4=B8=8B=E6=8B=89=E6=A1=86?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E6=90=9C=E7=B4=A2=EF=BC=8C=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E6=BA=90=E8=BF=87=E5=A4=9A=E7=9A=84=E6=97=B6=E5=80=99=E7=9B=AE?= =?UTF-8?q?=E5=89=8D=E6=97=A0=E6=B3=95=E6=9F=A5=E6=89=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/visualized/data/dataset/form/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-frontend/src/views/visualized/data/dataset/form/index.vue b/core/core-frontend/src/views/visualized/data/dataset/form/index.vue index 7f6a51d0aa..e758238cba 100644 --- a/core/core-frontend/src/views/visualized/data/dataset/form/index.vue +++ b/core/core-frontend/src/views/visualized/data/dataset/form/index.vue @@ -1212,6 +1212,7 @@ const getDsIconName = data => { @change="dsChange" :placeholder="t('dataset.pls_slc_data_source')" class="ds-list" + filterable popper-class="tree-select-ds_popper" v-model="dataSource" node-key="id" From b4198a82e3443beab3f9e0eaded7b5f8cc4271db Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 12 Dec 2023 16:44:41 +0800 Subject: [PATCH 3/3] =?UTF-8?q?fix:=20=E5=BC=80=E6=BA=90=E7=89=88=E5=8F=AF?= =?UTF-8?q?=E4=BB=A5=E7=9C=8B=E5=88=B0=E8=A1=8C=E5=88=97=E6=9D=83=E9=99=90?= =?UTF-8?q?=E8=8F=9C=E5=8D=95=EF=BC=8C=E4=BD=86=E5=88=87=E6=8D=A2=E5=90=8E?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E7=A9=BA=E7=99=BD=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/visualized/data/dataset/index.vue | 35 +++++++++++++------ 1 file changed, 25 insertions(+), 10 deletions(-) diff --git a/core/core-frontend/src/views/visualized/data/dataset/index.vue b/core/core-frontend/src/views/visualized/data/dataset/index.vue index 57ee7ac3f7..352cb67886 100644 --- a/core/core-frontend/src/views/visualized/data/dataset/index.vue +++ b/core/core-frontend/src/views/visualized/data/dataset/index.vue @@ -420,6 +420,23 @@ const defaultProps = { label: 'name' } +const defaultTab = [ + { + title: t('chart.data_preview'), + name: 'dataPreview' + }, + { + title: '结构预览', + name: 'structPreview' + } +] +const tablePanes = ref([]) +const tablePaneList = computed(() => { + return nodeInfo.weight >= 7 ? [...defaultTab, ...tablePanes.value] : [...defaultTab] +}) +const panelLoad = paneInfo => { + tablePanes.value = paneInfo +} const datasetListTree = ref() watch(nickName, (val: string) => { @@ -587,19 +604,17 @@ const getMenuList = (val: boolean) => {
- - - +