studentEducation.js 386 B

1
  1. "use strict";const t=require("../utils/request.js");exports.addStudentEducation=function(u){return t.request({url:"/main/studentEducation",method:"POST",data:u})},exports.delStudentEducation=function(u){return t.request({url:"/main/studentEducation/"+u,method:"DELETE"})},exports.updateStudentEducation=function(u){return t.request({url:"/main/studentEducation",method:"PUT",data:u})};