| 123456789101112131415161718192021222324 |
- <template>
- <div class="nitrogen-history">
- <HistoryTable columns-type="nitrogen" device-type="nitrogen" :sys-id="deviceId" designScope="nitrogen_auto_history" :scroll="{ y: 650 }" />
- </div>
- </template>
- <script setup lang="ts">
- import HistoryTable from '../../comment/HistoryTable.vue';
- const props = defineProps({
- deviceType: {
- type: String,
- required: true,
- },
- deviceId: {
- type: String,
- required: true,
- },
- });
- </script>
- <style lang="less" scoped>
- .nitrogen-history {
- position: fixed;
- top: 100px;
- }
- </style>
|