12345678910111213141516171819202122232425 |
- <template>
- <div class="handle-history">
- <HandlerHistoryTable columns-type="operatorhistory" device-type="pressurefan"
- :device-list-api="getTableList.bind(null, { strtype: 'pressurefan' })" designScope="pressurefan_history" />
- </div>
- </template>
- <script setup lang="ts">
- import HandlerHistoryTable from '../../comment/HandlerHistoryTable.vue';
- import { getTableList } from '../grout.api'
- const props = defineProps({
- deviceType: {
- type: String,
- required: true,
- },
- deviceId: {
- type: String,
- required: true,
- }
- })
- </script>
- <style lang="less" scoped>
- .handle-history {
- pointer-events: auto;
- }
- </style>
|