|
|
|
@ -9,9 +9,9 @@
|
|
|
|
|
>部门 : {{ this.userInfo.deptName }}</span>
|
|
|
|
|
|
|
|
|
|
<span style="font-weight: 500;color:rgb(51 48 48); font-size: 14px;">用户 : 
|
|
|
|
|
<!-- {{-->
|
|
|
|
|
<!-- this.userInfo.companyName-->
|
|
|
|
|
<!-- }}-->
|
|
|
|
|
<!-- {{-->
|
|
|
|
|
<!-- this.userInfo.companyName-->
|
|
|
|
|
<!-- }}-->
|
|
|
|
|
</span>
|
|
|
|
|
<span
|
|
|
|
|
style="font-weight: 500;color:rgb(51 48 48); font-size: 14px; margin-right: 20px"
|
|
|
|
@ -23,20 +23,19 @@
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<el-tabs type="border-card" style="margin: 15px">
|
|
|
|
|
|
|
|
|
|
<el-tab-pane label="待处理单据">
|
|
|
|
|
<CollectOrderAllotCardComponents style="margin: -15px"
|
|
|
|
|
:tagStatus="'1'"
|
|
|
|
|
></CollectOrderAllotCardComponents>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
|
<el-tab-pane label="未分配工位单据">
|
|
|
|
|
<CollectOrderAllotComponents
|
|
|
|
|
style="margin: -15px"
|
|
|
|
|
:tagStatus="'0'"
|
|
|
|
|
></CollectOrderAllotComponents>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
|
<el-tab-pane label="已分配工位单据">
|
|
|
|
|
<CollectOrderAllotComponents style="margin: -15px"
|
|
|
|
|
:tagStatus="'1'"
|
|
|
|
|
:viewType="1"
|
|
|
|
|
></CollectOrderAllotComponents>
|
|
|
|
|
</el-tab-pane>
|
|
|
|
|
|
|
|
|
@ -48,6 +47,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import CollectOrderAllotComponents from "./CollectOrderAllotComponents.vue";
|
|
|
|
|
import CollectOrderAllotCardComponents from "./CollectOrderAllotCardComponents.vue";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -56,7 +56,7 @@ import CollectOrderAllotComponents from "./CollectOrderAllotComponents.vue";
|
|
|
|
|
export default {
|
|
|
|
|
name: "PrescribeTagCode",
|
|
|
|
|
components: {
|
|
|
|
|
CollectOrderAllotComponents
|
|
|
|
|
CollectOrderAllotComponents, CollectOrderAllotCardComponents
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
@ -70,7 +70,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
if (this.$route.query.workplaceId != null){
|
|
|
|
|
if (this.$route.query.workplaceId != null) {
|
|
|
|
|
this.isLinkDisabled = true
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|