家长维护幼儿信息

This commit is contained in:
sk1551
2020-09-11 10:33:30 +08:00
parent b451bcce02
commit 78b5044e39
5 changed files with 171 additions and 45 deletions

View File

@ -2,70 +2,79 @@ import request from '@/utils/request'
// 查询幼儿信息列表
export function listChild(query) {
return request({
url: '/benyi/child/list',
method: 'get',
params: query
})
return request({
url: '/benyi/child/list',
method: 'get',
params: query
})
}
// 查询幼儿信息列表
export function listByCheck(query) {
return request({
url: '/benyi/child/listByCheck',
method: 'get',
params: query
})
return request({
url: '/benyi/child/listByCheck',
method: 'get',
params: query
})
}
// 查询幼儿信息详细
export function getChild(id) {
return request({
url: '/benyi/child/' + id,
method: 'get'
})
return request({
url: '/benyi/child/' + id,
method: 'get'
})
}
// 查询维护幼儿详细
export function getChild_query(query) {
return request({
url: '/benyi/child/getInfo',
method: 'get',
params: query
})
}
// 新增幼儿信息
export function addChild(data) {
return request({
url: '/benyi/child',
method: 'post',
data: data
})
return request({
url: '/benyi/child',
method: 'post',
data: data
})
}
// 修改幼儿信息
export function updateChild(data) {
return request({
url: '/benyi/child',
method: 'put',
data: data
})
return request({
url: '/benyi/child',
method: 'put',
data: data
})
}
// 修改幼儿信息
export function updateChild_tb(data,id) {
return request({
url: '/benyi/child/'+id,
method: 'put',
data: data
})
export function updateChild_tb(data, id) {
return request({
url: '/benyi/child/' + id,
method: 'put',
data: data
})
}
// 删除幼儿信息
export function delChild(id) {
return request({
url: '/benyi/child/' + id,
method: 'delete'
})
return request({
url: '/benyi/child/' + id,
method: 'delete'
})
}
// 导出幼儿信息
export function exportChild(query) {
return request({
url: '/benyi/child/export',
method: 'get',
params: query
})
return request({
url: '/benyi/child/export',
method: 'get',
params: query
})
}