This commit is contained in:
shidongli 2023-10-19 16:03:09 +08:00
parent 59eadf7562
commit 923884f132

View File

@ -0,0 +1,16 @@
import request from "../../request.js"
// 获取家庭成员详情
export function getInfo(patientCode) {
return request({
url: `/applet/register/getInfo/${patientCode}`,
method: 'GET'
})
}
// 解绑账号
export function delFamilyItem(patientCode) {
return request({
url: `/applet/register/unbinding/${patientCode}`,
method: 'GET'
})
}