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,10 +18,10 @@
</template>
<script lang="ts" setup>
import type * as echarts from 'echarts';
import { defaultsDeep } from 'lodash-es';
import { ref } from 'vue';
import { SCATTER_SYMBOL_SIZE, chatComProps, getChatChartOption } from '../common';
import { useDrawChatChart } from '../hooks/useDrawChatChart';
import { defaultsDeep } from 'lodash-es';
const activeName = ref('first');
const chartRef = ref<HTMLDivElement>(null);