xinelu-applet-ui/api/pagesB/AppIdentification/index.js

15 lines
278 B
JavaScript
Raw Normal View History

2024-06-25 18:25:50 +08:00
import request from "@/api/request.js"
2023-09-22 11:08:14 +08:00
export function AppIdentification(patientId) {
return request({
url: `/nurseApp/login/AppIdentification?patientId=${patientId}`,
2023-10-13 15:17:41 +08:00
method: 'GET',
header: {
Authorization: 'Bearer' + ' ' + uni.getStorageSync('token')
},
2023-09-22 11:08:14 +08:00
})
}