Przeglądaj źródła

fix: change course statistics

DESKTOP-USV654P\pc 2 tygodni temu
rodzic
commit
8b88d29e54
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      src/views/course/statistics/components/edit.vue

+ 2 - 2
src/views/course/statistics/components/edit.vue

@@ -196,11 +196,11 @@
           dataIndex: item.name,
           align: 'left',
           width: 80,
-          customRender: ({ text, record }) => {
+          customRender: ({ record }) => {
             try {
               if (record.courseTimeTypeData) {
                 const courseTimeTypeData = JSON.parse(record.courseTimeTypeData);
-                if (courseTimeTypeData[text]) return courseTimeTypeData[text];
+                if (courseTimeTypeData[item.name]) return courseTimeTypeData[item.name];
                 else return 0;
               } else {
                 return 0;