修改耗材/诊疗绑定,耗材项目药品的缺失

This commit is contained in:
叶锦涛
2025-11-19 16:33:12 +08:00
parent 18c96e006f
commit dfe35bb7f0
3 changed files with 30 additions and 16 deletions

View File

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