hookehuyr

refactor: 移除调试日志并优化级联筛选处理

清理myClassPage和checkinPage中关于级联筛选变化的调试日志
优化代码结构,移除不必要的注释
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-18 15:08:53 4 + * @LastEditTime: 2025-12-18 15:42:36
5 * @FilePath: /mlaj/src/views/teacher/checkinPage.vue 5 * @FilePath: /mlaj/src/views/teacher/checkinPage.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -279,8 +279,6 @@ const on_cascade_change = (payload) => { ...@@ -279,8 +279,6 @@ const on_cascade_change = (payload) => {
279 } else if (type === 'minor_group') { 279 } else if (type === 'minor_group') {
280 selected_minor_group_id.value = value 280 selected_minor_group_id.value = value
281 } 281 }
282 - // 级联筛选变化
283 - console.log('级联筛选变化: ', payload)
284 // 重新获取打卡日期 282 // 重新获取打卡日期
285 getCheckedDates(currentMonth.value); 283 getCheckedDates(currentMonth.value);
286 // 重置分页参数并重新加载数据 284 // 重置分页参数并重新加载数据
......
...@@ -307,8 +307,6 @@ const on_cascade_change = (payload) => { ...@@ -307,8 +307,6 @@ const on_cascade_change = (payload) => {
307 } else if (type === 'minor_group') { 307 } else if (type === 'minor_group') {
308 selected_minor_group_id.value = value 308 selected_minor_group_id.value = value
309 } 309 }
310 - // 级联筛选变化
311 - console.log('级联筛选变化: ', payload)
312 // 重置分页参数并重新加载数据 310 // 重置分页参数并重新加载数据
313 resetAndReload(); 311 resetAndReload();
314 } 312 }
......