nitrogenHistory.vue 586 B

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