hookehuyr

docs(checkin): 更新接口文档注释和调整样式间距

更新checkin.js接口文档注释,添加缺失的参数说明
调整checkinPage.vue中日期触发器的内边距和间隙样式
1 /* 1 /*
2 * @Date: 2025-06-06 09:26:16 2 * @Date: 2025-06-06 09:26:16
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-12-12 21:15:25 4 + * @LastEditTime: 2025-12-13 21:13:42
5 * @FilePath: /mlaj/src/api/checkin.js 5 * @FilePath: /mlaj/src/api/checkin.js
6 * @Description: 签到模块相关接口 6 * @Description: 签到模块相关接口
7 */ 7 */
...@@ -155,6 +155,8 @@ export const checkinTaskReviewAPI = (params) => fn(fetch.post(Api.CHECKIN_TEACH ...@@ -155,6 +155,8 @@ export const checkinTaskReviewAPI = (params) => fn(fetch.post(Api.CHECKIN_TEACH
155 * @param grade_id 年级ID 155 * @param grade_id 年级ID
156 * @param class_id 班级ID 156 * @param class_id 班级ID
157 * @param group_id 课程ID 157 * @param group_id 课程ID
158 + * @param id 大作业ID
159 + * @param subtask_id 小作业ID
158 * @param month 月份 160 * @param month 月份
159 * @param keyword 搜索 161 * @param keyword 搜索
160 * @returns data: { my_checkin_dates 已打卡日期列表 } 162 * @returns data: { my_checkin_dates 已打卡日期列表 }
......
1 <!-- 1 <!--
2 * @Date: 2025-05-29 15:34:17 2 * @Date: 2025-05-29 15:34:17
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-12-11 22:03:52 4 + * @LastEditTime: 2025-12-13 21:19:36
5 * @FilePath: /mlaj/src/views/teacher/checkinPage.vue 5 * @FilePath: /mlaj/src/views/teacher/checkinPage.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -722,14 +722,14 @@ const handleAdd = (type) => { ...@@ -722,14 +722,14 @@ const handleAdd = (type) => {
722 722
723 .date-trigger { 723 .date-trigger {
724 background-color: #fff; 724 background-color: #fff;
725 - padding: 1rem; 725 + padding: 0.5rem;
726 text-align: center; 726 text-align: center;
727 cursor: pointer; 727 cursor: pointer;
728 border-bottom: 1px solid #eee; 728 border-bottom: 1px solid #eee;
729 display: flex; 729 display: flex;
730 align-items: center; 730 align-items: center;
731 justify-content: center; 731 justify-content: center;
732 - gap: 0.5rem; 732 + // gap: 0.5rem;
733 flex-direction: column; 733 flex-direction: column;
734 734
735 .current-date { 735 .current-date {
......