xinelu-applet-ui/api/pagesC/H5Healthrecord/index.js

12 lines
268 B
JavaScript
Raw Normal View History

2024-03-30 21:06:43 +08:00
import request from "@/api/request.js"
//获取健康档案Key
2024-05-12 08:49:21 +08:00
export function getHealthKey(cardNo, openid) {
2024-03-30 21:06:43 +08:00
return request({
2024-05-12 08:49:21 +08:00
url: `/applet/signinfo/getHealthKey/${cardNo}/${openid}`,
2024-03-30 21:06:43 +08:00
method: 'get',
header: {
region: uni.getStorageSync('region'),
}
})
}