wujingjing
2025-01-09 6a475521b957b2c3a68ee950704f8f1948bd6cf9
src/components/chat/chatComponents/summaryCom/components/recordSet/RecordSet.vue
@@ -100,6 +100,10 @@
      type: String,
      required: false,
   },
   tableHeight:{
      type:Number,
      default:document.body.clientHeight * 0.7,
   },
   showFilter: {
      type: Boolean,
      default: true,
@@ -117,7 +121,7 @@
   },
});
const tableLimitHeight = props.chartHeight == undefined ? undefined : document.body.clientHeight * 0.7;
const tableLimitHeight = props.chartHeight == undefined ? undefined : props.tableHeight;
const chartLoading = ref(false);
@@ -132,6 +136,7 @@
const getVisibleParams = (data) => {
   // const visibleList = props.data?.params?.filter((item) => !item?.hide) ?? [];
   // index 作为 id
   const dataFilter =  data?.filter ?? [];
   const visibleList = (data?.filter ?? []).map((item, index) => {
      // 不修改原始地址
      item.id = index + '';
@@ -186,7 +191,6 @@
      }
   });
};
const visibleParams = ref(getVisibleParams(props.data));
const checkIsDayTime = () => {