|
|
|
@ -1034,21 +1034,67 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.workPlaceClass = this.$route.query.workPlaceClass
|
|
|
|
|
this.productType = this.$route.query.productType
|
|
|
|
|
if (this.workPlaceClass == 2) {
|
|
|
|
|
this.closeAllTabs()
|
|
|
|
|
this.editableTabsValue = 'IoCreateOrderOut'
|
|
|
|
|
this.menuActive = 1,
|
|
|
|
|
if (this.productType == 2){
|
|
|
|
|
this.editableTabsValue = 'IoCreateOrderOut'
|
|
|
|
|
this.menuActive = 1,
|
|
|
|
|
this.editableTabs = [{
|
|
|
|
|
number: 1,
|
|
|
|
|
title: '工位上货',
|
|
|
|
|
name: 'IoCreateOrderOut',
|
|
|
|
|
component: IoCreateOrderOut,
|
|
|
|
|
// 假设你需要传递的参数
|
|
|
|
|
componentProps: {
|
|
|
|
|
fromSplitType: 'out'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}else if (this.productType == 1){
|
|
|
|
|
this.editableTabsValue = 'DevicesIoCreateOrderOut'
|
|
|
|
|
this.menuActive = 100,
|
|
|
|
|
this.editableTabs = [{
|
|
|
|
|
number: 100,
|
|
|
|
|
title: '工位上货(器械)',
|
|
|
|
|
name: 'DevicesIoCreateOrderOut',
|
|
|
|
|
component: DevicesIoCreateOrderOut,
|
|
|
|
|
// 假设你需要传递的参数
|
|
|
|
|
componentProps: {
|
|
|
|
|
fromSplitType: 'out'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}else {
|
|
|
|
|
|
|
|
|
|
if (this.productType == 2) {
|
|
|
|
|
this.closeAllTabs()
|
|
|
|
|
this.editableTabsValue = 'IocCollectOrderCheckCode'
|
|
|
|
|
this.menuActive = 10
|
|
|
|
|
this.editableTabs = [{
|
|
|
|
|
number: 1,
|
|
|
|
|
title: '工位上货',
|
|
|
|
|
name: 'IoCreateOrderOut',
|
|
|
|
|
component: IoCreateOrderOut,
|
|
|
|
|
number: 10,
|
|
|
|
|
title: '单据审核',
|
|
|
|
|
name: 'IocCollectOrderCheckCode',
|
|
|
|
|
component: IocCollectOrderCheckCode,
|
|
|
|
|
// 假设你需要传递的参数
|
|
|
|
|
componentProps: {
|
|
|
|
|
fromSplitType: 'out'
|
|
|
|
|
}
|
|
|
|
|
componentProps: {}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
} else if (this.productType == 1){
|
|
|
|
|
this.closeAllTabs()
|
|
|
|
|
this.editableTabsValue = 'DevicesIocCollectOrderCheckCode'
|
|
|
|
|
this.menuActive = 1000
|
|
|
|
|
this.editableTabs = [{
|
|
|
|
|
number: 1000,
|
|
|
|
|
title: '单据审核(器械)',
|
|
|
|
|
name: 'DevicesIocCollectOrderCheckCode',
|
|
|
|
|
component: DevicesIocCollectOrderCheckCode,
|
|
|
|
|
// 假设你需要传递的参数
|
|
|
|
|
componentProps: {}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.findCurWorkPlaces()
|
|
|
|
|