nitrogenAlarmHistory.vue 501 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="alarm-history">
  3. <AlarmHistoryTable columns-type="alarm" device-type="nitrogen" designScope="alarm-history" :scroll="{ y: 650 }" />
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import AlarmHistoryTable from '../../comment/AlarmHistoryTable.vue';
  8. const props = defineProps({
  9. deviceId: {
  10. type: String,
  11. require: true,
  12. },
  13. });
  14. </script>
  15. <style lang="less" scoped>
  16. .alarm-history {
  17. width: 100%;
  18. position: fixed;
  19. top: 100px;
  20. }
  21. </style>