|
@@ -10,6 +10,10 @@
|
|
|
<div class="exam-history-description" @click="clickExamRule">
|
|
|
积分说明
|
|
|
</div>
|
|
|
+ <div class="exam-history-class-box">
|
|
|
+ <div class="exam-history-class-item">专项考试积分:XX</div>
|
|
|
+ <div class="exam-history-class-item">普通考试积分:XX</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
|
|
|
<div class="exam-history-list">
|
|
@@ -110,7 +114,9 @@ export default {
|
|
|
this.$store.commit("toggleLoading", false);
|
|
|
});
|
|
|
},
|
|
|
- clickExamRule() {}
|
|
|
+ clickExamRule() {
|
|
|
+ this.$router.push({ name: "ExamPointRule" });
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|
|
@@ -150,6 +156,18 @@ export default {
|
|
|
border-radius: 0.25rem;
|
|
|
color: #7cc8ff;
|
|
|
}
|
|
|
+ .exam-history-class-box {
|
|
|
+ margin-top: 0.5rem;
|
|
|
+ width: 100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: row;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
+ .exam-history-class-item {
|
|
|
+ color: #0088e9;
|
|
|
+ font-size: 0.65rem;
|
|
|
+ }
|
|
|
}
|
|
|
.exam-history-list {
|
|
|
padding: 0.5rem 0;
|
|
@@ -165,6 +183,7 @@ export default {
|
|
|
font-weight: bold;
|
|
|
word-break: break-all;
|
|
|
word-wrap: break-word;
|
|
|
+ font-size: 0.5rem;
|
|
|
}
|
|
|
.exam-history-item-left-percentage {
|
|
|
display: flex;
|