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