15 lines
384 B
JavaScript
15 lines
384 B
JavaScript
import request from "../../request.js"
|
|
// 获取家庭成员详情
|
|
export function getInfo(patientCode, openid) {
|
|
return request({
|
|
url: `/applet/register/getInfo/${patientCode}&${openid}`,
|
|
method: 'GET'
|
|
})
|
|
}
|
|
// 解绑账号
|
|
export function delFamilyItem(patientCode, openid) {
|
|
return request({
|
|
url: `/applet/register/unbinding/${patientCode}&${openid}`,
|
|
method: 'GET'
|
|
})
|
|
} |