|
|
@ -57,7 +57,7 @@
|
|
|
|
<!-- <i class="el-icon-s-order"></i>-->
|
|
|
|
<!-- <i class="el-icon-s-order"></i>-->
|
|
|
|
<!-- <span>单据管理</span>-->
|
|
|
|
<!-- <span>单据管理</span>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<!-- </template>-->
|
|
|
|
<el-menu-item :index=0 @click="clickMenuItem(0)" v-if="workPlaceClass == 1">
|
|
|
|
<el-menu-item :index=0 @click="clickMenuItem(0)" v-if="workPlaceClass == 1" >
|
|
|
|
<!-- <i class="el-icon-edit-outline"></i>-->
|
|
|
|
<!-- <i class="el-icon-edit-outline"></i>-->
|
|
|
|
<span slot="title">处理单据</span>
|
|
|
|
<span slot="title">处理单据</span>
|
|
|
|
</el-menu-item>
|
|
|
|
</el-menu-item>
|
|
|
@ -444,6 +444,7 @@ export default {
|
|
|
|
tabIndex: 0,
|
|
|
|
tabIndex: 0,
|
|
|
|
menuActive: 0,
|
|
|
|
menuActive: 0,
|
|
|
|
autoTag: 0,
|
|
|
|
autoTag: 0,
|
|
|
|
|
|
|
|
inAndOutType: 0,
|
|
|
|
workPlaceClass: 1,
|
|
|
|
workPlaceClass: 1,
|
|
|
|
resetKeys: {}
|
|
|
|
resetKeys: {}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -642,9 +643,11 @@ export default {
|
|
|
|
let busType = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType)
|
|
|
|
let busType = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType)
|
|
|
|
this.formData.busName = busType.busName;
|
|
|
|
this.formData.busName = busType.busName;
|
|
|
|
this.autoTag = busType.autoTag;
|
|
|
|
this.autoTag = busType.autoTag;
|
|
|
|
|
|
|
|
this.inAndOutType = busType.inAndOutType;
|
|
|
|
} else if (this.busTypeList.length == 1) {
|
|
|
|
} else if (this.busTypeList.length == 1) {
|
|
|
|
this.formData.busType = this.busTypeList[0].documentTypeCode
|
|
|
|
this.formData.busType = this.busTypeList[0].documentTypeCode
|
|
|
|
this.autoTag = this.busTypeList[0].autoTag;
|
|
|
|
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.$router.push({query: {...this.$route.query, busType: this.formData.busType}, path: this.$route.path})
|
|
|
|
this.selectBusTypeDisabled = false
|
|
|
|
this.selectBusTypeDisabled = false
|
|
|
|
this.formData.busName = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType).busName;
|
|
|
|
this.formData.busName = this.busTypeList.find(item => item.documentTypeCode == this.formData.busType).busName;
|
|
|
@ -653,6 +656,21 @@ export default {
|
|
|
|
this.formData.busType = null
|
|
|
|
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
|
|
|
|
return
|
|
|
|
})
|
|
|
|
})
|
|
|
|