2024-06-25 18:25:50 +08:00
|
|
|
import request from "@/api/request.js"
|
2023-10-19 16:03:09 +08:00
|
|
|
// 获取家庭成员详情
|
2024-04-17 08:57:37 +08:00
|
|
|
export function getInfo(patientCode, openid) {
|
2023-10-19 16:03:09 +08:00
|
|
|
return request({
|
2024-04-17 09:47:12 +08:00
|
|
|
url: `/applet/register/getInfo/${patientCode}/${openid}`,
|
2023-10-19 16:03:09 +08:00
|
|
|
method: 'GET'
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
// 解绑账号
|
2024-04-17 08:57:37 +08:00
|
|
|
export function delFamilyItem(patientCode, openid) {
|
2023-10-19 16:03:09 +08:00
|
|
|
return request({
|
2024-04-17 09:47:12 +08:00
|
|
|
url: `/applet/register/unbinding/${patientCode}/${openid}`,
|
2023-10-19 16:03:09 +08:00
|
|
|
method: 'GET'
|
|
|
|
|
})
|
2024-04-17 08:57:37 +08:00
|
|
|
}
|