12 lines
194 B
JavaScript
12 lines
194 B
JavaScript
|
|
import request from "../request.js"
|
||
|
|
|
||
|
|
|
||
|
|
export function AppIdentification(patientId) {
|
||
|
|
return request({
|
||
|
|
url: `/nurseApp/login/AppIdentification?patientId=${patientId}`,
|
||
|
|
method: 'GET'
|
||
|
|
})
|
||
|
|
}
|
||
|
|
|
||
|
|
|