瀏覽代碼

下载数据

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]);
             });
         })