|
|
@@ -5,7 +5,7 @@
|
|
|
<i class="iconfont icon_return"></i>返回
|
|
|
</div>
|
|
|
<div class="header_title">
|
|
|
- {{ pageTitle }}<span class="header_title_tip">(右键点击图片另存为可保存图片到本地)</span>
|
|
|
+ {{ pageTitle }}{{ studentCode }}<span class="header_title_tip">(右键点击图片另存为可保存图片到本地)</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="dialog_paper">
|
|
|
@@ -124,7 +124,7 @@ export default {
|
|
|
usedCardType:null,//学生系统卡类型
|
|
|
isLoading:false,//是否正在加载中
|
|
|
studentName: '',//学生姓名
|
|
|
-
|
|
|
+ studentCode:''
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
@@ -200,6 +200,8 @@ export default {
|
|
|
if(res.code==200)
|
|
|
{
|
|
|
this.paperImageList=res?.data?.pageVOS || [];
|
|
|
+ const studentCode = res?.data?.studentCode ?? '';
|
|
|
+ this.studentCode = studentCode ?`【${studentCode}】`:'';
|
|
|
this.usedCardType=res.data.usedCardType;
|
|
|
// 重置索引并更新当前试卷数据
|
|
|
// this.currentIndex = 0;
|
|
|
@@ -239,6 +241,7 @@ export default {
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
+ this.studentCode = '';
|
|
|
this.$nextTick(() => {
|
|
|
this.isLoading=false;
|
|
|
});
|