123456789101112131415161718 |
- <template>
- <div class="alarm-history">
- <AlarmHistoryTable columns-type="alarm" device-type="pulping"
- :device-list-api="getTableList.bind(null, { devicekind: 'pulping' })" designScope="alarm-history" />
- </div>
- </template>
- <script setup lang="ts">
- import AlarmHistoryTable from '../../comment/AlarmHistoryTable.vue';
- import { getTableList } from '../grout.api'
- </script>
- <style lang="less" scoped>
- .alarm-history {
- width: 100%;
- position: fixed;
- top: 80px;
- }
- </style>
|