groutHistory.vue 464 B

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