fix bug434:门诊手术安排:编辑弹窗中“切口类型”字段未正确回显数据
bug426:门诊医生站-检查开立:已选择列表应支持树形展开,显示套餐明细 bug439:领用出库:选择领用药品后“总库存数量”列数据未显示 bug457:门诊收费:已签发的手术类医嘱在门诊收费列表中不显示项目名称
This commit is contained in:
@@ -61,7 +61,11 @@ const props = defineProps({
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
|
||||
/** 表头所选出库仓库:传入后药品列表只含该仓有库存的行,避免选到别仓批号导致 inventory-item-info 一直为 0 */
|
||||
orgLocationId: {
|
||||
type: [String, Number],
|
||||
default: undefined,
|
||||
},
|
||||
});
|
||||
const emit = defineEmits(['selectRow']);
|
||||
const queryParams = ref({
|
||||
@@ -89,11 +93,14 @@ watch(
|
||||
queryParams.value.searchKey = newValue.searchKey;
|
||||
queryParams.value.itemType = newValue.itemType;
|
||||
queryParams.value.purchaseFlag = 0;
|
||||
// queryParams.value.sourceLocationId = newValue.sourceLocationId;
|
||||
// queryParams.value.purposeLocationId = newValue.purposeLocationId;
|
||||
if (newValue.orgLocationId != null && newValue.orgLocationId !== '') {
|
||||
queryParams.value.orgLocationId = newValue.orgLocationId;
|
||||
} else {
|
||||
delete queryParams.value.orgLocationId;
|
||||
}
|
||||
throttledGetList();
|
||||
},
|
||||
{ immdiate: true, deep: true }
|
||||
{ immediate: true, deep: true }
|
||||
);
|
||||
|
||||
getList();
|
||||
|
||||
Reference in New Issue
Block a user