nitrogenAlarmHistory.vue 498 B

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