From 482f3953b87a7bf8bf8480956ad3de1ec3a862ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=98=89=E8=B1=AA?= <42510293+ziyujiahao@users.noreply.github.com> Date: Mon, 18 May 2026 18:21:01 +0800 Subject: [PATCH] =?UTF-8?q?refactor(=E4=BB=AA=E8=A1=A8=E6=9D=BF=E3=80=81?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E5=A4=A7=E5=B1=8F):=20=E8=A1=A8=E6=A0=BC?= =?UTF-8?q?=E6=97=A0=E6=95=B0=E6=8D=AE=E7=9A=84=E6=8F=90=E7=A4=BA=EF=BC=8C?= =?UTF-8?q?=E6=94=AF=E6=8C=81=E8=87=AA=E5=AE=9A=E4=B9=89=E5=AD=97=E4=BD=93?= =?UTF-8?q?=E5=A4=A7=E5=B0=8F=E5=92=8C=E9=A2=9C=E8=89=B2=20#18296=20(#1842?= =?UTF-8?q?0)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dashboard-style/ComponentColorSelector.vue | 15 +++++++++++++++ core/core-frontend/src/locales/en.ts | 1 + core/core-frontend/src/locales/tw.ts | 1 + core/core-frontend/src/locales/zh-CN.ts | 1 + .../views/chart/components/editor/util/chart.ts | 2 ++ 5 files changed, 20 insertions(+) diff --git a/core/core-frontend/src/components/dashboard/subject-setting/dashboard-style/ComponentColorSelector.vue b/core/core-frontend/src/components/dashboard/subject-setting/dashboard-style/ComponentColorSelector.vue index fef2e7fc6d..daedbd2a3c 100644 --- a/core/core-frontend/src/components/dashboard/subject-setting/dashboard-style/ComponentColorSelector.vue +++ b/core/core-frontend/src/components/dashboard/subject-setting/dashboard-style/ComponentColorSelector.vue @@ -303,6 +303,21 @@ /> + + + + +
diff --git a/core/core-frontend/src/locales/en.ts b/core/core-frontend/src/locales/en.ts index 3db4bd7504..bd938483f6 100644 --- a/core/core-frontend/src/locales/en.ts +++ b/core/core-frontend/src/locales/en.ts @@ -1462,6 +1462,7 @@ export default { table_col_freeze_tip: 'First n col', table_row_freeze_tip: 'First n row', table_freeze: 'Freeze', + table_empty_font_color: 'Table empty value color', stripe: 'Zebra stripe', start_angle: 'Starting angle', end_angle: 'Ending angle', diff --git a/core/core-frontend/src/locales/tw.ts b/core/core-frontend/src/locales/tw.ts index a944568b67..f4972080d5 100644 --- a/core/core-frontend/src/locales/tw.ts +++ b/core/core-frontend/src/locales/tw.ts @@ -1424,6 +1424,7 @@ export default { table_col_freeze_tip: '凍結前n 列', table_row_freeze_tip: '凍結前n 行', table_freeze: '凍結', + table_empty_font_color: '表格空值顏色', stripe: '斑馬紋', start_angle: '起始角度', end_angle: '結束角度', diff --git a/core/core-frontend/src/locales/zh-CN.ts b/core/core-frontend/src/locales/zh-CN.ts index 688cd33070..564dd05d7a 100644 --- a/core/core-frontend/src/locales/zh-CN.ts +++ b/core/core-frontend/src/locales/zh-CN.ts @@ -1427,6 +1427,7 @@ export default { table_col_freeze_tip: '冻结前 n 列', table_row_freeze_tip: '冻结前 n 行', table_freeze: '冻结', + table_empty_font_color: '表格空值颜色', stripe: '斑马纹', start_angle: '起始角度', end_angle: '结束角度', diff --git a/core/core-frontend/src/views/chart/components/editor/util/chart.ts b/core/core-frontend/src/views/chart/components/editor/util/chart.ts index 18eb652b93..858311539b 100644 --- a/core/core-frontend/src/views/chart/components/editor/util/chart.ts +++ b/core/core-frontend/src/views/chart/components/editor/util/chart.ts @@ -86,6 +86,7 @@ export const DEFAULT_COLOR_CASE_LIGHT: DeepPartial = { gaugeStyle: 'default', tableBorderColor: '#E6E7E4', tableScrollBarColor: 'rgba(0, 0, 0, 0.15)', + tableEmptyFontColor: '#000', zoomButtonColor: '#aaa', zoomBackground: '#fff' }, @@ -147,6 +148,7 @@ export const DEFAULT_COLOR_CASE_DARK: DeepPartial = { gaugeStyle: 'default', tableBorderColor: '#CCCCCC', tableScrollBarColor: 'rgba(255, 255, 255, 0.5)', + tableEmptyFontColor: '#fff', zoomButtonColor: '#fff', zoomBackground: '#000' },