فهرست منبع

答题卡留痕过滤掉试卷空的数据

dengshaobo 1 ماه پیش
والد
کامیت
aa199aad82
1فایلهای تغییر یافته به همراه3 افزوده شده و 1 حذف شده
  1. 3 1
      src/components/StudentPaper.vue

+ 3 - 1
src/components/StudentPaper.vue

@@ -199,7 +199,9 @@ export default {
 
             if(res.code==200 && res.data)
             {
-              this.paperImageList=res?.data?.pageVOS || [];
+              //this.paperImageList=res?.data?.pageVOS || [];
+              // 过滤掉picUrl为空的数据
+              this.paperImageList = (res.data.pageVOS || []).filter(item => item.picUrl && item.picUrl.trim() !== '');
               const studentCode =  res?.data?.studentCode ?? '';
               this.studentCode = studentCode ?`【${studentCode}】`:'';
               this.usedCardType=res?.data?.usedCardType ?? 2;