yxh
yxh
2025-05-23 8022f7036945b75f82f2dfc43055623f81ed98f6
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',
  })
}