groutHandleHistory.vue 505 B

123456789101112131415161718
  1. <template>
  2. <div class="handle-history">
  3. <HandlerHistoryTable columns-type="operatorhistory" device-type="pulping"
  4. :device-list-api="getTableList.bind(null, { devicekind: 'pulping' })" designScope="pulping_history" />
  5. </div>
  6. </template>
  7. <script setup lang="ts">
  8. import HandlerHistoryTable from '../../comment/HandlerHistoryTable.vue';
  9. import { getTableList } from '../grout.api'
  10. </script>
  11. <style lang="less" scoped>
  12. .handle-history {
  13. position: fixed;
  14. top: 80px;
  15. z-index: 99;
  16. }
  17. </style>