wlzboy
2026-01-24 2f09efc660bf2cc94cbc5291ad25ca06fc9bdadf
app/api/hospital.js
@@ -85,3 +85,21 @@
    }
  })
}
/**
 * 基于分词匹配搜索医院(新算法,智能分词+评分排序)
 * @param {string} searchText 搜索文本
 * @param {number} deptId 部门ID(可选,用于区域过滤)
 * @param {number} limit 返回结果数量限制(默认50)
 */
export function searchHospitalsByKeywords(searchText, deptId, limit = 50) {
  return request({
    url: '/system/hospital/searchByKeywords',
    method: 'get',
    params: {
      searchText: searchText,
      deptId: deptId,
      pageSize: limit
    }
  })
}