12345678910111213141516 |
- <template>
- <div class="nitrogen-history">
- <HistoryTable columns-type="pressurefan_history" device-type="pressurefan" :device-list-api="getTableList.bind(null, {devicekind :'pressurefan'})" designScope="pressurefan_history" />
- </div>
- </template>
- <script setup lang="ts">
- import HistoryTable from '../../comment/HistoryTable.vue';
- import { getTableList } from '../nitrogen.api'
- </script>
- <style lang="less" scoped>
- .nitrogen-history{
- position: fixed;
- top: 80px;
- }
- </style>
|