fix: 修复

20240912_adapter
chenhc 4 months ago
parent b1727de5dc
commit 2ac137215b

@ -444,6 +444,7 @@ export default {
tabIndex: 0,
menuActive: 0,
autoTag: 0,
inAndOutType: 0,
workPlaceClass: 1,
resetKeys: {}
}
@ -642,9 +643,11 @@ export default {
let busType = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType)
this.formData.busName = busType.busName;
this.autoTag = busType.autoTag;
this.inAndOutType = busType.inAndOutType;
} else if (this.busTypeList.length == 1) {
this.formData.busType = this.busTypeList[0].documentTypeCode
this.autoTag = this.busTypeList[0].autoTag;
this.inAndOutType = this.busTypeList[0].inAndOutType;
this.$router.push({query: {...this.$route.query, busType: this.formData.busType}, path: this.$route.path})
this.selectBusTypeDisabled = false
this.formData.busName = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType).busName;
@ -653,6 +656,21 @@ export default {
this.formData.busType = null
}
if(this.inAndOutType == 1){
this.closeAllTabs()
this.editableTabsValue = 'IocCollectOrderCheckCode';
this.menuActive= 10,
this.editableTabs = [{
number: 10,
title: '单据审核',
name: 'IocCollectOrderCheckCode',
component: IocCollectOrderCheckCode,
//
componentProps: {}
}
];
}
}
return
})

Loading…
Cancel
Save