| | |
| | | // 删除个人信息 |
| | | export function delIndividual(ids) { |
| | | return request({ |
| | | url: '/self/user' +ids, |
| | | url: '/self/user/' +ids, |
| | | method: 'delete' |
| | | }) |
| | | } |
| | |
| | | export function delExperience(ids) |
| | | { |
| | | return request({ |
| | | url: '/zExperience' +ids, |
| | | url: '/zExperience/' +ids, |
| | | method: 'delete', |
| | | }) |
| | | } |
| | |
| | | export function delCertificate(ids) |
| | | { |
| | | return request({ |
| | | url: '/zCertificate' +ids, |
| | | url: '/zCertificate/' +ids, |
| | | method: 'delete', |
| | | }) |
| | | } |
| | |
| | | }) |
| | | } |
| | | |
| | | //拿到自传 |
| | | export function getAutobiography() |
| | | //拿到个人自传 |
| | | export function getCategory() |
| | | { |
| | | return request({ |
| | | url: '/zDict/byId', |