| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="grout-history">
- <HistoryTable columns-type="pulping" :device-type="deviceType"
- :device-list-api="getTableList.bind(null, { strtype: deviceType, sysId: deviceId })" designScope="pulping_auto_history" :scroll="{ y: 650 }"/>
- </div>
- </template>
- <script setup lang="ts">
- import HistoryTable from '../../comment/HistoryTable.vue';
- import { getTableList } from '../grout.api'
- const props = defineProps({
- deviceType: {
- type: String,
- required: true,
- },
- deviceId: {
- type: String,
- required: true,
- }
- })
- </script>
- <style lang="less" scoped>
- .grout-history {
- position: fixed;
- top: 80px;
- }
- </style>
|