This commit is contained in:
qsh
2026-02-03 09:50:16 +08:00
parent a5977aa41f
commit 20ab62b473
3 changed files with 113 additions and 322 deletions

9
src/api/student/index.js Normal file
View File

@@ -0,0 +1,9 @@
import request from '@/utils/request';
export const getStudentList = async params => {
return await request({
url: '/applet/xunjia/user/pageList',
method: 'GET',
params: params
});
};