소스 검색

下载数据

yuanyiming 1 년 전
부모
커밋
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]);
             });
         })