devicesmgt/sgzb-ui/src/views/scrapManage/Inventory/index.vue

22 lines
427 B
Vue
Raw Normal View History

2024-04-17 13:20:11 +08:00
<template>
2024-04-18 17:58:05 +08:00
<div class="app-container">
2024-04-17 13:20:11 +08:00
盘点报废
2024-04-18 17:58:05 +08:00
<!-- 盘点报废 -->
<!-- <FormModel />
<TableModel /> -->
2024-04-17 13:20:11 +08:00
</div>
</template>
<script>
2024-04-18 17:58:05 +08:00
import FormModel from '../component/formModel.vue'
import TableModel from '../component/tableModel.vue'
export default {
components: {
FormModel,
TableModel,
},
}
2024-04-17 13:20:11 +08:00
</script>
<style></style>