1234567891011121314151617181920212223242526272829303132 |
- <template>
- <div class="history-box">
- <HistoryTable
- :columns-type="`${deviceType}`"
- :device-type="deviceType"
- :sysId="deviceId"
- designScope="pressurefan_history"
- :scroll="{ y: 650 }"
- />
- </div>
- </template>
- <script setup lang="ts">
- import { ref, defineProps } from 'vue';
- import HistoryTable from '../../comment/HistoryTable.vue';
- // import { getTableList } from '../balancePress.api'
- const props = defineProps({
- deviceType: {
- type: String,
- required: true,
- },
- deviceId: {
- type: String,
- required: true,
- },
- });
- </script>
- <style lang="less" scoped>
- .history-box {
- pointer-events: auto;
- }
- </style>
|