| 1234567891011121314151617 |
- <template>
- <div class="grout-history">
- <HistoryTable columns-type="pulping" device-type="pulping"
- :device-list-api="getTableList.bind(null, { devicekind: 'pulping' })" designScope="pulping_auto_history" />
- </div>
- </template>
- <script setup lang="ts">
- import HistoryTable from '../../comment/HistoryTable.vue';
- import { getTableList } from '../grout.api'
- </script>
- <style lang="less" scoped>
- .grout-history {
- position: fixed;
- top: 80px;
- }
- </style>
|