You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
udiwms-vue-frame/src/views/collect/CollectOrderAllot.vue

44 lines
786 B
Vue

11 months ago
<template>
<div>
11 months ago
<el-tabs type="border-card" style="margin: 15px">
11 months ago
<el-tab-pane label="未分配工位单据">
<CollectOrderAllotComponents
style="margin: -15px"
:tagStatus="'0'"
></CollectOrderAllotComponents>
</el-tab-pane>
11 months ago
11 months ago
<el-tab-pane label="已分配工位单据">
<CollectOrderAllotComponents style="margin: -15px"
:tagStatus="'1'"
></CollectOrderAllotComponents>
</el-tab-pane>
11 months ago
11 months ago
</el-tabs>
11 months ago
</div>
</template>
<script>
11 months ago
import CollectOrderAllotComponents from "./CollectOrderAllotComponents.vue";
11 months ago
11 months ago
/**
* 已完成处方
*/
export default {
name: "PrescribeTagCode",
11 months ago
components: {
11 months ago
CollectOrderAllotComponents
11 months ago
}
}
</script>
11 months ago
11 months ago
<style scoped>
</style>