| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '../utils/request';
- // 查询教育经历列表
- export function listStudentEducation(query) {
- return request({
- url: '/main/studentEducation/list',
- method: 'GET',
- params: query
- })
- }
- // 查询教育经历详细
- export function getStudentEducation(id) {
- return request({
- url: '/main/studentEducation/' + id,
- method: 'GET'
- })
- }
- // 新增教育经历
- export function addStudentEducation(data) {
- return request({
- url: '/main/studentEducation',
- method: 'POST',
- data: data
- })
- }
- // 修改教育经历
- export function updateStudentEducation(data) {
- return request({
- url: '/main/studentEducation',
- method: 'PUT',
- data: data
- })
- }
- // 删除教育经历
- export function delStudentEducation(id) {
- return request({
- url: '/main/studentEducation/' + id,
- method: 'DELETE'
- })
- }
|