From 83f1310d0669e7a99eeda3ee199d611ae4152a8f Mon Sep 17 00:00:00 2001 From: wangyan Date: Fri, 7 Mar 2025 17:46:52 +0800 Subject: [PATCH] =?UTF-8?q?refactor(qa-prevention-xgf-app):=20=E9=87=8D?= =?UTF-8?q?=E6=9E=84=20api=20=E8=B0=83=E7=94=A8=E5=92=8C=E7=8F=AD=E7=BA=A7?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E8=8E=B7=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit -重命名 getListAll 为 getClassInfoByParams,提高代码可读性 - 在 api.js 中添加 getClassList 和 getStudentInfoApi调用 - 优化 store 中的 setStudentInfo action - 在首页和培训管理页面中集成新的 api 调用 - 添加人脸信息认证提示功能 --- api/api.js | 1 + api/index.js | 2 +- pages/index/index.vue | 32 ++++++++++++++++--- pages/train_management/index.vue | 20 ++++++------ pages/train_management/realname_info_auth.vue | 1 + store/index.js | 4 +-- 6 files changed, 42 insertions(+), 18 deletions(-) diff --git a/api/api.js b/api/api.js index 9cc6c06..78f16d0 100644 --- a/api/api.js +++ b/api/api.js @@ -9,3 +9,4 @@ export const setRefreshToken = (params) => post("/sys/refreshToken", params ); / export const setEntryV1 = (params) => post("/app/sys/user/entry", params ); // 入职 export const resignV1 = (params) => post("/app/sys/user/resign", params ); // 离职 export const getStudentInfoApi = (params) => post("/app/student/getStudentInfo", params ); // 获取学员信息 + diff --git a/api/index.js b/api/index.js index 4b52804..dfa2b9c 100644 --- a/api/index.js +++ b/api/index.js @@ -84,5 +84,5 @@ export const compareUserFaceCertify = (params) => post('/app/user/compareFace', export const compareUserVideoFaceCertify = (params) => post('/app/user/compareVideoFace', params) // 视频人脸验证 export const compareUserExamFaceCertify = (params) => post('/app/user/compareExamFace', params) // 考试照片人脸认证 export const compareUserExamVideoFaceCertify = (params) => post('/app/user/compareExamVideoFace', params) // 考试视频人脸认证 -export const getListAll = (params) => post("/app/stagestudentrelation/getClassInfoByParams", params); +export const getClassInfoByParams = (params) => post("/app/stagestudentrelation/getClassInfoByParams", params ); // 获取班级信息 // ********************* end *********************** diff --git a/pages/index/index.vue b/pages/index/index.vue index 4f7fe2f..079eada 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -46,8 +46,9 @@