监护人维护幼儿信息

This commit is contained in:
zhanglipeng
2020-11-18 15:36:36 +08:00
parent db89ce5a15
commit 1a52fb102d
7 changed files with 47 additions and 13 deletions

View File

@ -61,6 +61,15 @@ export function updateChild(data) {
})
}
// 修改幼儿信息
export function updateChild_jz(data) {
return request({
url: '/benyi/child/edit',
method: 'put',
data: data
})
}
// 修改幼儿信息
export function updateChild_tb(data, id) {
return request({

View File

@ -44,6 +44,15 @@ export function updateContactpeople(data) {
})
}
// 修改幼儿紧急情况联系人
export function updateContactpeople_jz(data) {
return request({
url: '/benyi/contactpeople/edit',
method: 'put',
data: data
})
}
// 删除幼儿紧急情况联系人
export function delContactpeople(id) {
return request({