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.
39 lines
435 B
Vue
39 lines
435 B
Vue
<template>
|
|
<div>
|
|
|
|
|
|
<prescribePanel
|
|
:RowType="type"
|
|
|
|
></prescribePanel>
|
|
|
|
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import prescribePanel from "./PanelOrderEndSearch";
|
|
import codePanel from "./PanelOrderEndCodeSearch";
|
|
|
|
/**
|
|
* 已完成处方
|
|
*/
|
|
export default {
|
|
name: "PrescribeTagCode",
|
|
components: {
|
|
prescribePanel, codePanel
|
|
},
|
|
data() {
|
|
return {
|
|
type: 1
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|