|
@@ -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>
|