groutHandleHistory.vue 656 B

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