xinelu-applet-ui/api/pages/startup/index.js

12 lines
186 B
JavaScript
Raw Normal View History

2023-09-22 11:08:14 +08:00
import request from "../request.js"
export function existPatientInfo(openId) {
return request({
url: `/nurseApplet/login/existPatientInfo?openId=${openId}`,
method: 'GET'
})
}