From 734524aab27fea2b8955a4d05ebe18f8020d253b Mon Sep 17 00:00:00 2001
From: yujialong <479214531@qq.com>
Date: Mon, 21 Oct 2024 15:23:38 +0800
Subject: [PATCH] =?UTF-8?q?=E8=B5=9B=E4=BA=8B=E4=BF=AE=E5=A4=8D?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/match/manage/matchArch.vue | 2 +-
src/views/match/manage/matchArchList.vue | 5 +++--
src/views/match/manage/otherArchList.vue | 16 +++++++++++++++-
3 files changed, 19 insertions(+), 4 deletions(-)
diff --git a/src/views/match/manage/matchArch.vue b/src/views/match/manage/matchArch.vue
index 8a41f3a..262c61e 100644
--- a/src/views/match/manage/matchArch.vue
+++ b/src/views/match/manage/matchArch.vue
@@ -32,7 +32,7 @@
我的评阅任务
分配评阅任务
+ @click="showReview(scope.row, '/allocationReview')">分配评阅任务
diff --git a/src/views/match/manage/matchArchList.vue b/src/views/match/manage/matchArchList.vue
index ccb5a14..782b7b7 100644
--- a/src/views/match/manage/matchArchList.vue
+++ b/src/views/match/manage/matchArchList.vue
@@ -79,7 +79,7 @@
分配评阅任务
+ @click="showReview('/allocationReview')">分配评阅任务
我的评阅任务
导出答题文件
@@ -493,7 +493,8 @@ export default {
// 实训导出
res = await axios.post(this.api.batchExportReportsAsZip, {
reportIds: ids,
- stageId: this.stageId
+ stageId: this.stageId,
+ competitionId: this.id,
}, {
headers: this.headers,
responseType: 'blob'
diff --git a/src/views/match/manage/otherArchList.vue b/src/views/match/manage/otherArchList.vue
index c1ef489..3f24cd8 100644
--- a/src/views/match/manage/otherArchList.vue
+++ b/src/views/match/manage/otherArchList.vue
@@ -50,7 +50,14 @@
- 学校
+
+
+
+
+
+
@@ -213,6 +220,7 @@ export default {
},
provinces: [],
cities: [],
+ schools: [],
keyword: this.$route.query.keyword || '',
searchTimer: null,
list: [],
@@ -261,6 +269,7 @@ export default {
mounted () {
this.getData()
this.getProvince()
+ this.getSchool()
},
methods: {
async getData () {
@@ -343,6 +352,11 @@ export default {
this.cities = list
}
},
+ // 获取学校
+ async getSchool () {
+ const { list } = await this.$get(this.api.querySchoolData)
+ this.schools = list
+ },
// 查看成绩报告
show (row) {