fix: 修复耗材目录添加项目时地点字段缺少耗材库数据问题

- 问题:formList参数只包含'11,16'(药库和药房),缺少'17'(耗材库)
- 解决:将formList参数从'11,16'修改为'11,16,17'
- 影响:器材目录新增对话框的地点下拉选项现在可以显示耗材库数据

Closes #174
This commit is contained in:
2026-03-12 13:47:36 +08:00
parent 4277a369d2
commit b7850e5b8a

View File

@@ -467,7 +467,7 @@ function getDeptTree() {
/** 查询地点下拉树结构 */
function getLocationTree() {
locationTreeSelect({ formList: '11,16' }).then((response) => {
locationTreeSelect({ formList: '11,16,17' }).then((response) => {
locationOptions.value = response.data.records;
});
}