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.
37 lines
613 B
Vue
37 lines
613 B
Vue
11 months ago
|
<template>
|
||
|
<div>
|
||
11 months ago
|
<el-tabs type="border-card" style="margin: 15px ;">
|
||
11 months ago
|
|
||
11 months ago
|
<el-tab-pane label="处理中处方">
|
||
|
<allotPanel
|
||
11 months ago
|
style="margin: -10px"
|
||
11 months ago
|
:panelType="1"
|
||
|
></allotPanel>
|
||
11 months ago
|
</el-tab-pane>
|
||
|
|
||
11 months ago
|
<el-tab-pane label="异常处方">
|
||
|
<allotPanel
|
||
11 months ago
|
style="margin: -10px"
|
||
11 months ago
|
:panelType="2"
|
||
|
></allotPanel>
|
||
11 months ago
|
</el-tab-pane>
|
||
11 months ago
|
</el-tabs>
|
||
11 months ago
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
|
||
11 months ago
|
import allotPanel from "./PanelOrderDeal";
|
||
11 months ago
|
|
||
11 months ago
|
export default {
|
||
|
name: "PrescribeTagCode",
|
||
11 months ago
|
components: {
|
||
11 months ago
|
allotPanel
|
||
11 months ago
|
}
|
||
|
}
|
||
|
</script>
|
||
11 months ago
|
|
||
11 months ago
|
<style scoped>
|
||
|
|
||
|
</style>
|