1234567891011121314151617181920212223242526 |
- <template>
- <div class="nitrogen-history">
- <HistoryTable columns-type="nitrogen" device-type="nitrogen" :sys-id="deviceId" designScope="nitrogen_auto_history" :scroll="{ y: 650 }" />
- <!-- <HistoryTable device-code="nitrogen" dict-code="nitrogen_dict" columns-code="nitrogen_auto_history" /> -->
- </div>
- </template>
- <script setup lang="ts">
- import HistoryTable from '../../comment/HistoryTable.vue';
- // import HistoryTable from '/@/views/vent/comment/history/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>
|