| | |
| | | <pro-table ref="proRef"></pro-table> |
| | | </el-tab-pane> |
| | | <el-tab-pane label="原材料" name="rawMaterial"> |
| | | <!-- <raw-table ref="rawRef"></raw-table>--> |
| | | <raw-table ref="rawRef"></raw-table> |
| | | </el-tab-pane> |
| | | </el-tabs> |
| | | </div> |
| | |
| | | <script setup> |
| | | import {onMounted, reactive, ref} from "vue"; |
| | | import proTable from './components/productTable.vue' |
| | | // import rawTable from './components/rawTable.vue' |
| | | import rawTable from './components/rawTable.vue' |
| | | const showFinishPro = ref(false) |
| | | const proRef = ref() |
| | | const rawRef = ref() |