nitrogenHistory.vue 572 B

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