| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="alarm-history">
- <HandlerHistoryTable
- columns-type="operator_history"
- :device-type="`${devicekide}`"
- :device-list-api="baseList"
- designScope="alarm-history"
- :scroll="scroll"
- />
- </div>
- </template>
- <script setup lang="ts">
- import { onBeforeMount, ref, watch, onMounted, nextTick, defineAsyncComponent, reactive, onUnmounted, inject, unref } from 'vue';
- import HandlerHistoryTable from '../../comment/HandlerHistoryTable.vue';
- import { list as baseList } from '../../../deviceManager/fanTabel/fan.api';
- const props = defineProps({
- devicekide:{
- type:String,
- default:'',
- },
- });
- let scroll = reactive({
- y: 700,
- });
- </script>
- <style lang="less" scoped>
- .alarm-history {
- width: 100%;
- height: 730px;
- position: fixed;
- top: 100px;
- }
- </style>
|