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