ソースを参照

提交一下

1
mo 3 年 前
コミット
23f98fa2e5
1 ファイル変更7 行追加1 行削除
  1. 7 1
      src/views/main/cloudDate/organRankDetail.vue

+ 7 - 1
src/views/main/cloudDate/organRankDetail.vue

@@ -322,7 +322,6 @@ export default {
       try {
         const res = await organStudentOverView({
           ...this.searchList,
-          date: this.date,
           rows: 999,
           page: 1,
           organIds: this.searchForm.organId,
@@ -384,6 +383,13 @@ export default {
       this.$store.dispatch("delVisitedViews", this.$route);
       this.$router.push({ path: "/main/main?tabrouter=cloudDate" });
     },
+        gotoDetail(row) {
+      // 跳转到分部数据详情 row.organId
+      this.$router.push({
+        name: "organDateDetail",
+        params: { organId: row.organId },
+      });
+    },
   },
 };
 </script>