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

51 lines
834 B
Vue

11 months ago
<template>
<div>
<prescribePanel
:RowType="type"
:workPlaceCode="workPlaceCode"
></prescribePanel>
11 months ago
<!-- <el-tabs type="border-card" style="margin: 15px">-->
11 months ago
<!-- <el-tab-pane label="已完成单据">-->
<!-- -->
<!-- </el-tab-pane>-->
11 months ago
11 months ago
<!-- </el-tabs>-->
10 months ago
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 {
10 months ago
type: 1,
workPlaceCode: null,
}
},
created() {
if (this.$route.query.workplaceId != null) {
10 months ago
this.workPlaceCode = Number(this.$route.query.workplaceId);
11 months ago
}
11 months ago
}
}
</script>
<style scoped>
</style>