库房管理->采购管理->采购管理点击《详情》按钮跳转后无数据显示
This commit is contained in:
@@ -765,10 +765,16 @@ watch(
|
||||
if (newVlaue) {
|
||||
editData.value.editRow = newVlaue?.editRow;
|
||||
editData.value.item = newVlaue?.item;
|
||||
edit();
|
||||
// 使用nextTick确保变量初始化完成后再执行edit
|
||||
nextTick(() => {
|
||||
edit();
|
||||
});
|
||||
} else {
|
||||
editData.value = {};
|
||||
show();
|
||||
// 使用nextTick确保变量初始化完成后再执行show
|
||||
nextTick(() => {
|
||||
show();
|
||||
});
|
||||
}
|
||||
},
|
||||
{ immediate: true }
|
||||
@@ -1156,6 +1162,12 @@ function changeValEnd(val, index) {
|
||||
}
|
||||
// 切换仓库类型获取药房/药库/耗材库列表
|
||||
function handleChangeLocationType(value) {
|
||||
// 确保locationList变量已初始化
|
||||
if (!locationList) {
|
||||
console.warn('locationList未初始化');
|
||||
return;
|
||||
}
|
||||
|
||||
if (value == 16) {
|
||||
// 药房类型
|
||||
getPharmacyList().then((res) => {
|
||||
|
||||
Reference in New Issue
Block a user