mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-23 09:52:22 +00:00
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
export default {
|
|
get(prestudent_id) {
|
|
return this.$fhcApi.post('api/frontend/v1/stv/student/get/' + prestudent_id);
|
|
},
|
|
save(form, prestudent_id, data) {
|
|
return this.$fhcApi.post(form, 'api/frontend/v1/stv/student/save/' + prestudent_id,
|
|
data
|
|
);
|
|
},
|
|
}
|