12345678910111213141516171819202122 |
- <template>
- <div class="handle-history">
- <HandlerHistoryTable columns-type="operatorhistory" device-type="nitrogen" :device-list-api="getTableList.bind(null, {devicekind :'nitrogen'})" designScope="nitrogen_history" />
- </div>
- </template>
- <script setup lang="ts">
- import HandlerHistoryTable from '../../comment/HandlerHistoryTable.vue';
- import { getTableList } from '../nitrogen.api'
- const props = defineProps({
- deviceId: {
- type: String,
- require: true
- }
- })
- </script>
- <style lang="less" scoped>
- .handle-history{
- width: 100%;
- position: fixed;
- top: 80px;
- }
- </style>
|