소스 검색

master elective - commands - jump detail bug fixed

hare8999@163.com 2 년 전
부모
커밋
4cc4a519c9
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      src/views/elective/generation/components/elective-generation-table.vue

+ 3 - 2
src/views/elective/generation/components/elective-generation-table.vue

@@ -181,8 +181,9 @@ export default {
             for (const row of this.resolvedTable.rows) {
               const val = row[subColProp]
               if (val?.generation == current) {
-                if (this.isCellQueryable(val, column)) {
-                  this.goDetails(val, column, false)
+                const subColumn = column.children[subColProp]
+                if (this.isCellQueryable(val, subColumn)) {
+                  this.goDetails(val, subColumn, false)
                   return
                 }
               }