diff --git a/src/views/basic/workplace/addBusTypeDialog.vue b/src/views/basic/workplace/addBusTypeDialog.vue index 672d78c7..c9ad1828 100644 --- a/src/views/basic/workplace/addBusTypeDialog.vue +++ b/src/views/basic/workplace/addBusTypeDialog.vue @@ -253,7 +253,7 @@ @@ -264,10 +264,9 @@ { }) }, + change() { this.formData.documentTypeCode = null if (this.formData.isMatching == 0) { @@ -437,7 +438,59 @@ export default { this.getBusTypeList() } }, + changeUploadIsMatching() { + this.formData.uploadDocumentTypeCode = null + if (this.formData.uploadIsMatching == 0){ + this.getUploadBusTypeList() + }else { + this.getUploadBusType() + } + }, + getUploadBusType() { + let query = { + thirdSys: null, + key: "", + page: 1, + limit: 50 + } + getOriginBusType(query) + .then((response) => { + let busTypeList = response.data.list || [] + let busTypes = busTypeList.map(busType => { + return { + code: busType.action, + name: busType.name + } + }) + this.uploadTypes = busTypes + }) + .catch(() => { + }) + }, + getUploadBusTypeList() { + let query = { + enable: 1, + page: 1, + limit: 50 + } + getBusTypeList(query).then(res => { + if (res.code == 20000) { + // this.uploadTypes = res.data.list || [] + let busTypeList = res.data.list || [] + // _this.options.getWorkPlace = res.data.list || []; + let busTypes = busTypeList.map(busType => { + return { + code: busType.action, + name: busType.name + } + }) + this.uploadTypes = busTypes + } else { + this.$message.error('获取错误') + } + }) + }, documentTypeChange(val) { if (this.formData.isMatching == 0) { @@ -489,8 +542,7 @@ export default { this.$message.error('获取错误') } }) - } - , + }, formSubmit() { this.formData.workplaceCode = this.workplaceId if (this.formData.scanType == 1) { @@ -594,6 +646,11 @@ export default { } else { this.getBusTypeList() } + if (this.formData.uploadIsMatching == 0){ + this.getUploadBusTypeList() + }else { + this.getUploadBusType() + } } else { this.getBusTypeList() } @@ -605,5 +662,9 @@ export default { diff --git a/src/views/basic/workplace/workplaceQueue.vue b/src/views/basic/workplace/workplaceQueue.vue index de987547..413a6791 100644 --- a/src/views/basic/workplace/workplaceQueue.vue +++ b/src/views/basic/workplace/workplaceQueue.vue @@ -44,15 +44,15 @@ > - + - - + + diff --git a/src/views/inoutDrug/DialogSelectProduct.vue b/src/views/inoutDrug/DialogSelectProduct.vue index f2cf3109..20645f46 100644 --- a/src/views/inoutDrug/DialogSelectProduct.vue +++ b/src/views/inoutDrug/DialogSelectProduct.vue @@ -71,7 +71,7 @@ > @@ -287,7 +287,7 @@ export default { }, handleChange(val) { - this.radioCheck = val.id; + this.radioCheck = val.nameCode; this.currentRow = val; },