|
|
@@ -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;
|