balancePressHistory.vue 754 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="history-box">
  3. <HistoryTable
  4. :columns-type="`${deviceType}`"
  5. :device-type="deviceType"
  6. :sysId="deviceId"
  7. designScope="pressurefan_history"
  8. :scroll="{ y: 650 }"
  9. :only-bouned-devices="true"
  10. :show-history-curve="true"
  11. />
  12. </div>
  13. </template>
  14. <script setup lang="ts">
  15. import { defineProps } from 'vue';
  16. import HistoryTable from '../../comment/HistoryTable.vue';
  17. // import { getTableList } from '../balancePress.api'
  18. const props = defineProps({
  19. deviceType: {
  20. type: String,
  21. required: true,
  22. },
  23. deviceId: {
  24. type: String,
  25. required: true,
  26. },
  27. });
  28. </script>
  29. <style lang="less" scoped>
  30. .history-box {
  31. pointer-events: auto;
  32. }
  33. </style>