nitrogenHandleHistory.vue 509 B

12345678910111213141516
  1. <template>
  2. <div class="handle-history">
  3. <HandlerHistoryTable columns-type="operatorhistory" device-type="pressurefan" :device-list-api="getTableList.bind(null, {devicekind :'pressurefan'})" designScope="pressurefan_history" />
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import HandlerHistoryTable from '../../comment/HandlerHistoryTable.vue';
  8. import { getTableList } from '../nitrogen.api'
  9. </script>
  10. <style lang="less" scoped>
  11. .handle-history{
  12. position: fixed;
  13. top: 80px;
  14. }
  15. </style>