balancePressHistory.vue 692 B

1234567891011121314151617181920212223242526272829303132
  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. />
  10. </div>
  11. </template>
  12. <script setup lang="ts">
  13. import { ref, defineProps } from 'vue';
  14. import HistoryTable from '../../comment/HistoryTable.vue';
  15. // import { getTableList } from '../balancePress.api'
  16. const props = defineProps({
  17. deviceType: {
  18. type: String,
  19. required: true,
  20. },
  21. deviceId: {
  22. type: String,
  23. required: true,
  24. },
  25. });
  26. </script>
  27. <style lang="less" scoped>
  28. .history-box {
  29. pointer-events: auto;
  30. }
  31. </style>