| 1234567891011121314151617181920212223242526272829 |
- <template>
- <div class="history-box">
- <HistoryTable :columns-type="`${deviceType}`" :device-type="deviceType" :sysId="deviceId"
- :device-list-api="getTableList.bind(null, { strtype: 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 '../gasPump.api'
- const props = defineProps({
- deviceType: {
- type: String,
- required: true,
- },
- deviceId: {
- type: String,
- }
- })
- </script>
- <style lang="less" scoped>
- .history-box {
- pointer-events: auto;
- position: absolute;
- top: 90px;
- }
- </style>
|