balancePressHandleHistory.vue 724 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="handle-history">
  3. <HandlerHistoryTable
  4. columns-type="operator_history"
  5. device-type="sys_surface_caimei"
  6. :device-list-api="getTableList.bind(null, { strtype: 'pressurefan' })"
  7. designScope="pressurefan_history"
  8. />
  9. </div>
  10. </template>
  11. <script setup lang="ts">
  12. import HandlerHistoryTable from '../../comment/HandlerHistoryTable.vue';
  13. import { getTableList } from '../balancePress.api';
  14. const props = defineProps({
  15. deviceType: {
  16. type: String,
  17. required: true,
  18. },
  19. deviceId: {
  20. type: String,
  21. required: true,
  22. },
  23. });
  24. </script>
  25. <style lang="less" scoped>
  26. .handle-history {
  27. width: 100%;
  28. pointer-events: auto;
  29. }
  30. </style>