Browse Source

下载数据

yuanyiming 1 năm trước cách đây
mục cha
commit
d8906dd00c
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  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]);
             });
         })