11
WXL
2023-09-09 43ccabd8163bba887ba50cc5d029334672dcfa59
src/api/system/grade.js
@@ -29,8 +29,8 @@
// 修改年级信息
export function updateGrade(data) {
  return request({
    url: '/system/grade',
    method: 'put',
    url: '/system/grade/edit',
    method: 'post',
    data: data
  })
}
@@ -38,8 +38,8 @@
// 删除年级信息
export function delGrade(gradeId) {
  return request({
    url: '/system/grade/' + gradeId,
    method: 'delete'
    url: '/system/grade/remove/' + gradeId,
    method: 'get',
  })
}