| 123456789101112131415161718192021222324252627282930 |
- <template>
- <div class="handle-history">
- <HandlerHistoryTable
- columns-type="operator_history"
- device-type="sys_surface_caimei"
- :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 '../balancePress.api';
- const props = defineProps({
- deviceType: {
- type: String,
- required: true,
- },
- deviceId: {
- type: String,
- required: true,
- },
- });
- </script>
- <style lang="less" scoped>
- .handle-history {
- width: 100%;
- pointer-events: auto;
- }
- </style>
|