修改耗材目录地点的缺失

This commit is contained in:
叶锦涛
2025-11-18 17:23:39 +08:00
parent e105919dab
commit 89862878b5

View File

@@ -496,11 +496,12 @@ function getDeptTree() {
}
/** 查询地点下拉树结构 */
function getLocationTree() {
locationTreeSelect({ formList: '11,16' }).then((response) => {
console.log(response, 'response查询部门下拉树结构');
locationOptions.value = response.data.records;
});
const getLocationTree = () => {
locationTreeSelect({ formList: '11,16,17' }).then((res) => {
if (res.data && res.data.records) {
locationOptions.value = res.data.records
}
})
}
// 显示弹框
function edit() {