From 0e440f0793408a13d9c2f9ac53bd37b4afc43b96 Mon Sep 17 00:00:00 2001 From: M69W <15809201+M69W@users.noreply.github.com> Date: Tue, 18 May 2021 23:03:48 +0800 Subject: [PATCH] style: fix the background color of table striped is lose (#618) Co-authored-by: ljh --- src/components/Table/src/BasicTable.vue | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/components/Table/src/BasicTable.vue b/src/components/Table/src/BasicTable.vue index c9bfc404..6d167d74 100644 --- a/src/components/Table/src/BasicTable.vue +++ b/src/components/Table/src/BasicTable.vue @@ -176,12 +176,8 @@ getDataSourceRef ); - const { - getFormProps, - replaceFormSlotKey, - getFormSlotKeys, - handleSearchInfoChange, - } = useTableForm(getProps, slots, fetch, getLoading); + const { getFormProps, replaceFormSlotKey, getFormSlotKeys, handleSearchInfoChange } = + useTableForm(getProps, slots, fetch, getLoading); const getBindValues = computed(() => { const dataSource = unref(getDataSourceRef); @@ -300,7 +296,7 @@ .@{prefix-cls} { &-row__striped { td { - background-color: content-background; + background-color: @app-content-background; } } -- GitLab