fix:优化

20240912_adapter
chenhc 1 month ago
parent 4001e5f1ec
commit 64bf1f424c

@ -1034,8 +1034,10 @@ export default {
},
created() {
this.workPlaceClass = this.$route.query.workPlaceClass
this.productType = this.$route.query.productType
if (this.workPlaceClass == 2) {
this.closeAllTabs()
if (this.productType == 2){
this.editableTabsValue = 'IoCreateOrderOut'
this.menuActive = 1,
this.editableTabs = [{
@ -1049,6 +1051,50 @@ export default {
}
}
]
}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: 10,
title: '单据审核',
name: 'IocCollectOrderCheckCode',
component: IocCollectOrderCheckCode,
//
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()

@ -133,6 +133,7 @@ export default {
getUserWorkByWorkplaceCode(query).then(res => {
if (res.code == 20000){
let url = window.location.origin + `/UDI_WMS_NEW#/tagCodeBlank?workplaceId=` + this.stationList[index].workplaceId +`&workPlaceClass=`+ this.stationList[index].workPlaceClass
+`&productType=`+ this.stationList[index].productType
// this.$router.push( workplaceId)
window.open(url, '_blank');
}else {

Loading…
Cancel
Save