9/18 优化药品信息

yanshishuju
wangwei 7 months ago
parent 5631131b68
commit 31d28ace80

@ -80,10 +80,10 @@
<el-table :data="erpList" style="width: 100%" highlight-current-row="true" border ref="multipleTable" @row-click="handleRowClick" <el-table :data="erpList" style="width: 100%" highlight-current-row="true" border ref="multipleTable" @row-click="handleRowClick"
v-loading="erpLloading" @current-change="handleErpChange" @selection-change="handleSelectionChange"> v-loading="erpLloading" @current-change="handleErpChange" @selection-change="handleSelectionChange">
<el-table-column v-if="isImport" type="selection" width="55" ></el-table-column> <el-table-column v-if="isImport" type="selection" width="55" :selectable="checkSelectable"></el-table-column>
<el-table-column label width="45" v-if="!isImport"> <el-table-column label width="45" v-if="!isImport">
<template slot-scope="scope"> <template slot-scope="scope">
<el-radio :label="scope.row.id" v-model="chenck"><span></span></el-radio> <el-radio :label="scope.row.id" v-model="chenck" ><span></span></el-radio>
</template> </template>
</el-table-column> </el-table-column>
<!--<el-table-column v-if="!isImport" type="selection" width="55"></el-table-column>--> <!--<el-table-column v-if="!isImport" type="selection" width="55"></el-table-column>-->
@ -265,6 +265,10 @@ export default {
intentThirdId: { intentThirdId: {
type: Object, type: Object,
required: true, required: true,
},
mainIds: {
type: Array,
required: true,
} }
}, },
@ -346,9 +350,9 @@ export default {
this.thrProductsDetailVisible = true; this.thrProductsDetailVisible = true;
}, },
checkSelectable(row) { // checkSelectable(row) {
return !row.checked; // return !row.checked;
}, // },
handleCurrentChange(val) { handleCurrentChange(val) {
this.unionQuery.page = val; this.unionQuery.page = val;
this.getList(); this.getList();
@ -361,7 +365,7 @@ export default {
}, },
handleRowClick(row){ handleRowClick(row){
row.isSelected = !row.isSelected; row.isSelected = !row.isSelected;
this.$refs.multipleTable.toggleRowSelection(row); // this.$refs.multipleTable.toggleRowSelection(row);
}, },
hideSearch() { hideSearch() {
this.showSearch = !this.showSearch; this.showSearch = !this.showSearch;
@ -597,6 +601,17 @@ export default {
this.list = []; 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: { components: {
@ -606,7 +621,6 @@ export default {
created() { created() {
this.getBasicThirdSys(); this.getBasicThirdSys();
this.erpQuery.code = this.intentThirdId; this.erpQuery.code = this.intentThirdId;
}, },
}; };
</script> </script>

@ -904,7 +904,7 @@ export default {
uuid: this.newProductData.uuid, uuid: this.newProductData.uuid,
id: this.newProductData.id, id: this.newProductData.id,
nameCode:this.newProductData.nameCode, nameCode:this.newProductData.nameCode,
productType:this.newProductData.productType, productType:this.newProductData.productsType,
} }
this.loading = true this.loading = true
filterByUuid(query) filterByUuid(query)

@ -185,6 +185,7 @@
:isImport="isImport" :isImport="isImport"
:data="thisData" :data="thisData"
:defaultSys="defaultSys" :defaultSys="defaultSys"
:mainIds="mainIds"
@closeUdi="closeDialog" @closeUdi="closeDialog"
:supEnable="false" :supEnable="false"
></chooseHouseDrug> ></chooseHouseDrug>
@ -224,6 +225,7 @@ export default {
filterBadInv: true, filterBadInv: true,
query: {}, query: {},
list: [], list: [],
mainIds:[],
filterQuery: { filterQuery: {
productsType: 2, productsType: 2,
page: 1, page: 1,
@ -315,6 +317,7 @@ export default {
.then((response) => { .then((response) => {
this.loading = false this.loading = false
this.list = response.data.list || [] this.list = response.data.list || []
this.mainIds = this.list.map(item => item.mainId);
this.total = response.data.total || 0 this.total = response.data.total || 0
}) })
.catch(() => { .catch(() => {

@ -300,6 +300,7 @@ export default {
limit: 10, limit: 10,
startTime: null, startTime: null,
endTime: null, endTime: null,
keywords: null,
}, },
options: { options: {
getWorkPlaceList: [], getWorkPlaceList: [],
@ -404,6 +405,7 @@ export default {
limit: 10, limit: 10,
startTime: null, startTime: null,
endTime: null, endTime: null,
keywords: null,
}; };
this.actDateRange = []; this.actDateRange = [];

Loading…
Cancel
Save