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/CollectOrderEndBlank.vue

82 lines
1.8 KiB
Vue

<template>
<div>
<el-row :gutter="0" v-if="isLinkDisabled" style="margin-top: 15px">
<el-col :span="24" align="right">
<div class="inv-hos-title">
<span
style="margin: 10px;color: #2d8cf0;font-size: 14px;"
>部门&nbsp:&nbsp{{ this.userInfo.deptName }}</span>
<span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户&nbsp:&nbsp
<!-- {{-->
<!-- this.userInfo.companyName-->
<!-- }}-->
</span>
<span
style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"
>({{
this.userInfo.userName
}})</span>
</div>
</el-col>
</el-row>
<el-tabs type="border-card" style="margin: 15px">
<el-tab-pane label="已完成单据">
<prescribePanel
style="margin: -15px"
></prescribePanel>
</el-tab-pane>
<!-- <el-tab-pane label="扫码查询">-->
<!-- <codePanel style="margin: -15px"-->
<!-- ></codePanel>-->
<!-- </el-tab-pane>-->
</el-tabs>
</div>
</template>
<script>
import prescribePanel from "./PanelOrderEndSearch";
import codePanel from "./PanelOrderEndCodeSearch";
/**
* 已完成处方
*/
export default {
name: "PrescribeTagCode",
components: {
prescribePanel, codePanel
},
data() {
return {
type: 1,
isLinkDisabled: false,
userInfo: {
inv: this.$store.getters.locInvName,
deptName: this.$store.getters.locDeptName,
userName: this.$store.getters.name,
companyName: this.$store.getters.companyName,
},
}
},
created() {
if (this.$route.query.workplaceId != null){
this.isLinkDisabled = true
}
}
}
</script>
<style scoped>
</style>