wujingjing
2025-02-10 e792d4d46e406da8d0a4ae8ad97db34a95f1c66a
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%',
         },