From 4fb206d45bed4d8839172ddd75c3569ac8dbdb75 Mon Sep 17 00:00:00 2001
From: wujingjing <gersonwu@qq.com>
Date: 星期二, 25 二月 2025 16:58:05 +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