nitrogenHistory.vue 496 B

12345678910111213141516
  1. <template>
  2. <div class="nitrogen-history">
  3. <HistoryTable columns-type="pressurefan_history" 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 HistoryTable from '../../comment/HistoryTable.vue';
  8. import { getTableList } from '../nitrogen.api'
  9. </script>
  10. <style lang="less" scoped>
  11. .nitrogen-history{
  12. position: fixed;
  13. top: 80px;
  14. }
  15. </style>