20200727-入园申请

This commit is contained in:
paidaxing444
2020-07-27 22:11:32 +08:00
parent 5cafc37152
commit c23ccd6420
10 changed files with 780 additions and 368 deletions

View File

@ -17,10 +17,19 @@ export function getExperience(id) {
})
}
// 查询入班体验申请详细
export function getExperience_query(query) {
return request({
url: '/benyi/experience/getInfo',
method: 'get',
params: query
})
}
// 新增入班体验申请
export function addExperience(data) {
return request({
url: '/benyi/experience',
url: '/benyi/experience/add',
method: 'post',
data: data
})