fix: 修复耗材目录添加项目时地点字段缺少耗材库数据问题
- 问题:formList参数只包含'11,16'(药库和药房),缺少'17'(耗材库) - 解决:将formList参数从'11,16'修改为'11,16,17' - 影响:器材目录新增对话框的地点下拉选项现在可以显示耗材库数据 Closes #174
This commit is contained in:
@@ -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;
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user