nitrogenHistory.vue 396 B

12345678910111213141516
  1. <template>
  2. <div class="nitrogen-history">
  3. <HistoryTable columns-type="forcFan" device-type="forcFan" designScope="forcFan_history" :scroll="{y: 650}" />
  4. </div>
  5. </template>
  6. <script setup lang="ts">
  7. import HistoryTable from '../../comment/HistoryTable.vue';
  8. </script>
  9. <style lang="less" scoped>
  10. .nitrogen-history{
  11. position: fixed;
  12. top: 80px;
  13. margin-top: 20px;
  14. }
  15. </style>