yuanyiming 1 год назад
Родитель
Сommit
d8906dd00c
1 измененных файлов с 2 добавлено и 0 удалено
  1. 2 0
      src/components/pages/studentEva.vue

+ 2 - 0
src/components/pages/studentEva.vue

@@ -238,11 +238,13 @@ export default {
         .then(() => {
           this.ExcelLoading = true;
           let params = {
+            cid: this.cid,
             id: this.year
           };
           this.ajax
             .get(this.$store.state.api + "selectClassAllRecord", params)
             .then(res => {
+              // return console.log(res);
               this.exportExcel(res.data[0]);
             });
         })