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