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.
41 lines
668 B
Vue
41 lines
668 B
Vue
11 months ago
|
<template>
|
||
|
<div>
|
||
|
<el-tabs type="border-card" style="margin: 15px">
|
||
|
|
||
|
<el-tab-pane label="已完成赋码单据">
|
||
|
<prescribePanel
|
||
|
style="margin: -15px"
|
||
|
></prescribePanel>
|
||
|
</el-tab-pane>
|
||
|
|
||
|
<el-tab-pane label="扫码查询">
|
||
|
<codePanel style="margin: -15px"
|
||
|
></codePanel>
|
||
|
</el-tab-pane>
|
||
|
|
||
|
</el-tabs>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
|
import prescribePanel from "./PanelOrderEndSearch";
|
||
|
import codePanel from "./PanelOrderEndCodeSearch";
|
||
|
|
||
|
/**
|
||
|
* 已完成处方
|
||
|
*/
|
||
|
export default {
|
||
|
name: "PrescribeTagCode",
|
||
|
components: {
|
||
|
prescribePanel, codePanel
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|