groutAlarmHistory.vue 485 B

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