From 2ac137215bd50588bdce8490fd47f6a3f41fc8d6 Mon Sep 17 00:00:00 2001 From: chenhc <2369838784@qq.com> Date: Thu, 19 Dec 2024 11:37:18 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/collect/CollectOrderTabs.vue | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/views/collect/CollectOrderTabs.vue b/src/views/collect/CollectOrderTabs.vue index 6558a6c7..240931fc 100644 --- a/src/views/collect/CollectOrderTabs.vue +++ b/src/views/collect/CollectOrderTabs.vue @@ -57,7 +57,7 @@ - + 处理单据 @@ -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 })