|
@@ -62,6 +62,10 @@
|
|
|
<span class="evaluation-status-tag ev-tag-common" :style="{ color: item.scoreColor }">
|
|
|
{{ item.scoreText }}
|
|
|
</span>
|
|
|
+ <!-- 統測評量 -->
|
|
|
+ <span class="evaluation-status-tag ev-tag-common" :style="{ color: jointExamTagColor }" v-if="item.isJointExam">
|
|
|
+ {{ $t("learnActivity.mgtScEv.jointExam") }}
|
|
|
+ </span>
|
|
|
<Icon class="exam-target" size="20" type="ios-people" @click="getExamTarget(item)" />
|
|
|
</div>
|
|
|
<!-- 立即结束 和评测状态 按钮-->
|
|
@@ -234,7 +238,8 @@
|
|
|
source: "",
|
|
|
name: ""
|
|
|
},
|
|
|
- semesterRange: null
|
|
|
+ semesterRange: null,
|
|
|
+ jointExamTagColor: '#2db7f5'
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -560,6 +565,7 @@
|
|
|
item.scoreText = statusInfo.scoreText;
|
|
|
item.scoreColor = statusInfo.scoreColor;
|
|
|
item.curSchool = !(item.scope === "school" && item.school != this.$store.state.userInfo.schoolCode);
|
|
|
+ item.isJointExam = (item.jointExamId && typeof item.jointExamId === "string" && item.jointExamId.length > 0) ? true : false;
|
|
|
});
|
|
|
this.evaListShow.push(...res.examInfo);
|
|
|
if (isFresh && res.examInfo.length) {
|
|
@@ -698,6 +704,7 @@
|
|
|
resData.scoreText = statusInfo.scoreText;
|
|
|
resData.scoreColor = statusInfo.scoreColor;
|
|
|
resData.curSchool = !(resData.scope === "school" && resData.school != this.$store.state.userInfo.schoolCode);
|
|
|
+ resData.isJointExam = (resData.jointExamId && typeof resData.jointExamId === "string" && resData.jointExamId.length > 0) ? true : false;
|
|
|
//设置各科题号信息
|
|
|
this.setPaperQuInfo(resData.papers);
|
|
|
}
|