From e792d4d46e406da8d0a4ae8ad97db34a95f1c66a Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期一, 10 二月 2025 17:31:08 +0800 Subject: [PATCH] 高亮问题 --- src/components/chat/chatComponents/recordSetCom/RecordSetCom.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/chat/chatComponents/recordSetCom/RecordSetCom.vue b/src/components/chat/chatComponents/recordSetCom/RecordSetCom.vue index 8f2ad08..6aec4cd 100644 --- a/src/components/chat/chatComponents/recordSetCom/RecordSetCom.vue +++ b/src/components/chat/chatComponents/recordSetCom/RecordSetCom.vue @@ -6,7 +6,7 @@ </div> </el-tab-pane> <el-tab-pane class="h-full" label="Data" name="second"> - <el-table :data="data.values" style="width: 100%" cellClassName="text-sm" headerCellClassName="text-sm"> + <el-table :data="data.values" style="width: 100%" cellClassName="" headerCellClassName=""> <el-table-column v-for="(item, index) in data?.names" :label="item" :key="index"> <template #default="scope"> {{ scope.row[index] }} @@ -18,7 +18,7 @@ </template> <script lang="ts" setup> import type * as echarts from 'echarts'; -import _ from 'lodash'; +import { defaultsDeep } from 'lodash-es'; import { ref } from 'vue'; import { SCATTER_SYMBOL_SIZE, chatComProps, getChatChartOption } from '../common'; import { useDrawChatChart } from '../hooks/useDrawChatChart'; @@ -30,7 +30,7 @@ const drawChart = () => { chartInstance.value.setOption( - _.defaultsDeep(getChatChartOption(), { + defaultsDeep(getChatChartOption(), { grid: { bottom: '5%', }, -- Gitblit v1.9.3