postdischarge-applet/api/Medicalknowledge/Medicalknowledge.js

9 lines
158 B
JavaScript
Raw Permalink Normal View History

2024-11-01 13:36:21 +08:00
import request from "../request.js"
export function getInfoById(id) {
return request({
url: `/postDischarge/getInfoById?id=${id}`,
method: 'get',
})
}