|
@@ -298,7 +298,7 @@
|
|
|
<!-- 答题卡 -->
|
|
<!-- 答题卡 -->
|
|
|
<template v-for="(paperItem,paperIndex) in (singleSubjectData?.[subKey]?.paperImageList || [])">
|
|
<template v-for="(paperItem,paperIndex) in (singleSubjectData?.[subKey]?.paperImageList || [])">
|
|
|
<div class="area_module area_module_img" v-if="singleSubjectData?.[subKey]?.paperImagePageNum?.[paperIndex] == page">
|
|
<div class="area_module area_module_img" v-if="singleSubjectData?.[subKey]?.paperImagePageNum?.[paperIndex] == page">
|
|
|
- <PaperImage v-if="paperItem.picUrl" :paperImgUrl="paperItem.picUrl" :usedCardType="singleSubjectData?.[subKey]?.usedCardType" :drawData="paperItem.questionVOS || []" :isDrag="false" :isWheel="false" :isShowContextMenu="false" rotateDeg="-90"></PaperImage>
|
|
|
|
|
|
|
+ <PaperImage v-if="paperItem.picUrl" :paperImgUrl="paperItem.picUrl" :usedCardType="paperItem.useType" :drawData="paperItem.questionVOS || []" :isDrag="false" :isWheel="false" :isShowContextMenu="false" rotateDeg="-90"></PaperImage>
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
</template>
|
|
</template>
|
|
@@ -846,7 +846,7 @@ export default {
|
|
|
},{
|
|
},{
|
|
|
name:'联校最高分',
|
|
name:'联校最高分',
|
|
|
prop:'examMaxScore',
|
|
prop:'examMaxScore',
|
|
|
- display:res?.data?.examMaxScoreStatus === 0 && this.schoolType == 2
|
|
|
|
|
|
|
+ display:res?.data?.examMaxScoreStatus === 0 && this.reportParam.examLevel == 1 && this.schoolType == 2
|
|
|
},{
|
|
},{
|
|
|
name:'班级均分',
|
|
name:'班级均分',
|
|
|
prop:'classAvgScore',
|
|
prop:'classAvgScore',
|
|
@@ -858,7 +858,7 @@ export default {
|
|
|
},{
|
|
},{
|
|
|
name:'联校均分',
|
|
name:'联校均分',
|
|
|
prop:'examAvgScore',
|
|
prop:'examAvgScore',
|
|
|
- display:res?.data?.examAvgScoreStatus === 0 && this.schoolType == 2
|
|
|
|
|
|
|
+ display:res?.data?.examAvgScoreStatus === 0 && this.reportParam.examLevel == 1 && this.schoolType == 2
|
|
|
}]
|
|
}]
|
|
|
const groupClassRanks = res.data.groupClassRanks || [];
|
|
const groupClassRanks = res.data.groupClassRanks || [];
|
|
|
const groupClassMaxScoreList = res.data.groupClassMaxScoreList || [];
|
|
const groupClassMaxScoreList = res.data.groupClassMaxScoreList || [];
|
|
@@ -1083,7 +1083,7 @@ export default {
|
|
|
paperImageList[0].questionVOS.unshift(totalScore)
|
|
paperImageList[0].questionVOS.unshift(totalScore)
|
|
|
}
|
|
}
|
|
|
this.singleSubjectData[index].paperImageList = paperImageList;
|
|
this.singleSubjectData[index].paperImageList = paperImageList;
|
|
|
- this.singleSubjectData[index].usedCardType = res?.data?.usedCardType ?? 1;
|
|
|
|
|
|
|
+ // this.singleSubjectData[index].usedCardType = res?.data?.usedCardType ?? 1;
|
|
|
for(let i = 0;i<paperImageList.length;i++){
|
|
for(let i = 0;i<paperImageList.length;i++){
|
|
|
const pageNum = this.SingleChartPage(this.printPageHeight);
|
|
const pageNum = this.SingleChartPage(this.printPageHeight);
|
|
|
this.singleSubjectData[index].paperImagePageNum.push(pageNum);
|
|
this.singleSubjectData[index].paperImagePageNum.push(pageNum);
|