From bd40af6eb34ac66beae52c4d01cd13a59b6102eb Mon Sep 17 00:00:00 2001 From: wangyan Date: Fri, 7 Mar 2025 11:03:55 +0800 Subject: [PATCH] =?UTF-8?q?refactor(train=5Fmanagement):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96=E7=AD=BE=E5=90=8D=E5=B1=95=E7=A4=BA=E5=92=8C=E7=AD=BE?= =?UTF-8?q?=E5=88=B0=E7=8A=B6=E6=80=81=E6=98=BE=E7=A4=BA=E9=80=BB=E8=BE=91?= =?UTF-8?q?-=20=E5=9C=A8=20exam=5Frecord.vue=20=E4=B8=AD=E5=B0=86=E7=AD=BE?= =?UTF-8?q?=E5=AD=97=E5=9B=BE=E7=89=87=E5=B1=95=E7=A4=BA=E6=96=B9=E5=BC=8F?= =?UTF-8?q?=E4=BB=8E=20u-image=20=E6=94=B9=E4=B8=BA=20image=20=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=20-=20=E5=9C=A8=20sign=5Finformation.vue=20=E4=B8=AD?= =?UTF-8?q?=E5=AE=8C=E5=96=84=E7=AD=BE=E5=88=B0=E7=8A=B6=E6=80=81=E5=92=8C?= =?UTF-8?q?=E8=80=83=E8=AF=95=E7=AD=BE=E5=88=B0=E7=8A=B6=E6=80=81=E7=9A=84?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E9=80=BB=E8=BE=91-=20=E6=9B=B4=E6=96=B0=20Bu?= =?UTF-8?q?sStagestudentrelationDao.xml=20=E4=B8=AD=E7=9A=84=E6=8E=92?= =?UTF-8?q?=E5=BA=8F=E9=80=BB=E8=BE=91=EF=BC=8C=E6=A0=B9=E6=8D=AE=E7=8A=B6?= =?UTF-8?q?=E6=80=81=E5=92=8C=E5=88=9B=E5=BB=BA=E6=97=B6=E9=97=B4=E6=8E=92?= =?UTF-8?q?=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/api.js | 1 + pages/index/index.vue | 27 ++ pages/train_management/exam_record.vue | 355 +++++++++--------- pages/train_management/index.vue | 20 +- pages/train_management/realname_info_auth.vue | 11 + store/index.js | 17 +- 6 files changed, 255 insertions(+), 176 deletions(-) diff --git a/api/api.js b/api/api.js index 3a57f28..9cc6c06 100644 --- a/api/api.js +++ b/api/api.js @@ -8,3 +8,4 @@ export const uploadFile = (params) => upload("/app/sys/file/uploadFile", params) export const setRefreshToken = (params) => post("/sys/refreshToken", params ); // 刷新token 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/pages/index/index.vue b/pages/index/index.vue index 90d5057..669ad9e 100644 --- a/pages/index/index.vue +++ b/pages/index/index.vue @@ -128,6 +128,33 @@ export default { CODE_TYPE: obj[0].CODE_TYPE } }) + } else if (type === '2') { + // 签到二维码方式进入, [type: 2 --> 签到二维码方式进入] + if (findClassId) { + uni.$u.route({ + url: '/pages/train_management/realname_info_auth', + params: { + type: 'scan_face', + classId + } + }) + } else { + uni.$u.toast('您未在培训计划内,无法入班签到,请联系教师') + } + } else if (type === '3') { + // 考试二维码方式进入 [type: 3 --> 考试二维码方式进入] + if (findClassId) { + uni.$u.route({ + url: '/pages/train_management/face_authentication', + params: { + type: 'learning_certification', + stageexampaperinputId, + classId, + } + }) + } else { + uni.$u.toast('您未在培训计划内,无法进行考试,请联系教师') + } } } }) diff --git a/pages/train_management/exam_record.vue b/pages/train_management/exam_record.vue index 1cb8fed..c9ebaf1 100644 --- a/pages/train_management/exam_record.vue +++ b/pages/train_management/exam_record.vue @@ -7,15 +7,17 @@ - 姓名: {{info.username}} - 分数: {{info.examscore}}分 + + 姓名: {{info.username}} + 分数: {{info.examscore}}分 + 考试时间: {{info.examtimeend}} 签字: - + 当前试题: {{ current + 1 }}/{{ questionList.length }} @@ -30,7 +32,8 @@ {{ questionList[current].questiondry }} - + {{ item }} {{ questionList[current]['option' + item.toLocaleLowerCase()] }} @@ -38,7 +41,8 @@ - + {{ item }} {{ questionList[current]['option' + item.toLocaleLowerCase()] }} @@ -46,7 +50,8 @@ - + {{ questionList[current]['option' + item.toLocaleLowerCase()] }} @@ -59,8 +64,8 @@ {{ questionList[current].answerright === 'A' ? '对' : '错' }} {{ questionList[current].answerright || '无' }} - 权威解读 - {{ questionList[current].descr || "无" }} + 权威解读 + {{ questionList[current].descr || "无" }} @@ -92,184 +97,194 @@ + \ No newline at end of file diff --git a/pages/train_management/index.vue b/pages/train_management/index.vue index f89a303..b636134 100644 --- a/pages/train_management/index.vue +++ b/pages/train_management/index.vue @@ -45,7 +45,7 @@