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