From 69a56969fe9ee4084a03f88a5c93123587b1df65 Mon Sep 17 00:00:00 2001 From: WXL <wl_5969728@163.com> Date: 星期四, 18 九月 2025 13:43:06 +0800 Subject: [PATCH] 档案管理 --- src/api/system/student.js | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/api/system/student.js b/src/api/system/student.js index 1c4c3f0..507e03b 100644 --- a/src/api/system/student.js +++ b/src/api/system/student.js @@ -29,8 +29,8 @@ // 淇敼瀛︾敓淇℃伅 export function updateStudent(data) { return request({ - url: '/system/student', - method: 'put', + url: '/system/student/edit', + method: 'post', data: data }) } @@ -38,8 +38,8 @@ // 鍒犻櫎瀛︾敓淇℃伅 export function delStudent(studentId) { return request({ - url: '/system/student/' + studentId, - method: 'delete' + url: '/system/student/remove/' + studentId, + method: 'get', }) } -- Gitblit v1.9.3