Parcourir la source

feat: 页面提示

zhangjie il y a 11 mois
Parent
commit
25385dd454
1 fichiers modifiés avec 14 ajouts et 0 suppressions
  1. 14 0
      src/modules/mark/views/MarkManage.vue

+ 14 - 0
src/modules/mark/views/MarkManage.vue

@@ -127,6 +127,17 @@
         >
         </el-pagination>
       </div>
+      <div class="tips-markedness">
+        <p>
+          结束评卷后可以在归档管理模块——成绩查询菜单,查看成绩、成绩报告及导出成绩
+          <el-button
+            type="text"
+            class="btn-primary btn-link ml-2"
+            @click="toScoreManage"
+            >点击跳转成绩查询</el-button
+          >
+        </p>
+      </div>
     </div>
     <!-- MarkDetail -->
     <mark-detail ref="MarkDetail" :instance="curRow"></mark-detail>
@@ -211,6 +222,9 @@ export default {
     handleSelectionChange(val) {
       this.multipleSelection = val;
     },
+    toScoreManage() {
+      this.$router.push({ name: "ScoreManage" });
+    },
     async toExport() {
       if (this.downloading) return;
       this.downloading = true;