diff --git a/src/views/basic/product/drug/chooseHouseDrug.vue b/src/views/basic/product/drug/chooseHouseDrug.vue index a63484a2..87b8e36a 100644 --- a/src/views/basic/product/drug/chooseHouseDrug.vue +++ b/src/views/basic/product/drug/chooseHouseDrug.vue @@ -80,10 +80,10 @@ - + @@ -265,6 +265,10 @@ export default { intentThirdId: { type: Object, required: true, + }, + mainIds: { + type: Array, + required: true, } }, @@ -346,9 +350,9 @@ export default { this.thrProductsDetailVisible = true; }, - checkSelectable(row) { - return !row.checked; - }, + // checkSelectable(row) { + // return !row.checked; + // }, handleCurrentChange(val) { this.unionQuery.page = val; this.getList(); @@ -361,7 +365,7 @@ export default { }, handleRowClick(row){ row.isSelected = !row.isSelected; - this.$refs.multipleTable.toggleRowSelection(row); + // this.$refs.multipleTable.toggleRowSelection(row); }, hideSearch() { this.showSearch = !this.showSearch; @@ -597,6 +601,17 @@ export default { this.list = []; }); }, + checkSelectable(row) { + if (this.mainIds == null) { + return true + } else { + if (this.mainIds.length > 0) { + return this.mainIds.indexOf(row.code) === -1 + } else { + return true + } + } + } }, components: { @@ -606,7 +621,6 @@ export default { created() { this.getBasicThirdSys(); this.erpQuery.code = this.intentThirdId; - }, }; diff --git a/src/views/basic/product/drug/drugAdd.vue b/src/views/basic/product/drug/drugAdd.vue index 0c5b1b75..0daa3778 100644 --- a/src/views/basic/product/drug/drugAdd.vue +++ b/src/views/basic/product/drug/drugAdd.vue @@ -904,7 +904,7 @@ export default { uuid: this.newProductData.uuid, id: this.newProductData.id, nameCode:this.newProductData.nameCode, - productType:this.newProductData.productType, + productType:this.newProductData.productsType, } this.loading = true filterByUuid(query) diff --git a/src/views/basic/product/drug/drugMaintain.vue b/src/views/basic/product/drug/drugMaintain.vue index 5c79bcdd..e740c9fc 100644 --- a/src/views/basic/product/drug/drugMaintain.vue +++ b/src/views/basic/product/drug/drugMaintain.vue @@ -185,6 +185,7 @@ :isImport="isImport" :data="thisData" :defaultSys="defaultSys" + :mainIds="mainIds" @closeUdi="closeDialog" :supEnable="false" > @@ -224,6 +225,7 @@ export default { filterBadInv: true, query: {}, list: [], + mainIds:[], filterQuery: { productsType: 2, page: 1, @@ -315,6 +317,7 @@ export default { .then((response) => { this.loading = false this.list = response.data.list || [] + this.mainIds = this.list.map(item => item.mainId); this.total = response.data.total || 0 }) .catch(() => { diff --git a/src/views/collect/IoDestroyOrder.vue b/src/views/collect/IoDestroyOrder.vue index 244618c9..f0c3c29e 100644 --- a/src/views/collect/IoDestroyOrder.vue +++ b/src/views/collect/IoDestroyOrder.vue @@ -300,6 +300,7 @@ export default { limit: 10, startTime: null, endTime: null, + keywords: null, }, options: { getWorkPlaceList: [], @@ -404,6 +405,7 @@ export default { limit: 10, startTime: null, endTime: null, + keywords: null, }; this.actDateRange = [];