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.
udiwms-vue-frame/src/views/collect/CollectOrderEnd.vue

39 lines
435 B
Vue

11 months ago
<template>
<div>
11 months ago
<prescribePanel
11 months ago
:RowType="type"
11 months ago
11 months ago
></prescribePanel>
11 months ago
</div>
</template>
<script>
11 months ago
import prescribePanel from "./PanelOrderEndSearch";
import codePanel from "./PanelOrderEndCodeSearch";
11 months ago
/**
* 已完成处方
*/
11 months ago
export default {
name: "PrescribeTagCode",
components: {
prescribePanel, codePanel
11 months ago
},
data() {
11 months ago
return {
type: 1
}
11 months ago
}
}
</script>
<style scoped>
</style>