wujingjing
2024-10-17 ef721915b1a4afc33454e71460769bd3d7c264a9
src/components/chat/chatComponents/summaryCom/components/deviceLastValue/MonitorContent.vue
@@ -24,7 +24,12 @@
            height: `${CELL_HEIGHT}px`,
         }"
      >
         <span class="cursor-pointer" @mouseover="valueMouseOver($event, item)" @mouseleave="valueMouseLeave">
         <span
            class="cursor-pointer"
            @mouseover="valueMouseOver($event, item)"
            @mouseleave="valueMouseLeave"
            @click="emit('itemClick', item, type)"
         >
            {{ item[type] }}
         </span>
      </div>
@@ -64,6 +69,8 @@
import { reactive, type PropType } from 'vue';
import { BORDER_COLOR, CELL_HEIGHT, CONTENT_CELL_CLASS, ROW_HEADER_CELL_CLASS, THICK_BORDER_WIDTH } from './constants';
import type { MonitorValue } from './types';
const emit = defineEmits(['itemClick']);
const props = defineProps({
   /** @description 标题 */
   title: {