|
|
@@ -110,8 +110,8 @@
|
|
|
if(res.code!==0) return proxy.$showToast(res.msg)
|
|
|
list.value = [...list.value,...res.data.list]
|
|
|
list.value.forEach(l=>{
|
|
|
- l.activityStartTime = new Date(l.activityStartTime).Format('yyyy-MM-dd');
|
|
|
- l.activityEndTime = new Date(l.activityEndTime).Format('yyyy-MM-dd');
|
|
|
+ l.activityStartTime = new Date(l.activityStartTime).Format('yyyy.MM.dd');
|
|
|
+ l.activityEndTime = new Date(l.activityEndTime).Format('yyyy.MM.dd');
|
|
|
l.check = false;
|
|
|
l.age = getAge(l.idCard);
|
|
|
})
|
|
|
@@ -124,6 +124,9 @@
|
|
|
proxy.$api.get('/core/social/practice/record/claimedPage',queryParams.value).then(({data:res})=>{
|
|
|
if(res.code!==0) return proxy.$showToast(res.msg)
|
|
|
yslList.value = [...yslList.value,...res.data.list]
|
|
|
+ yslList.value.forEach(l=>{
|
|
|
+ l.createDate = new Date(l.createDate).Format('yyyy.MM.dd hh:mm:ss');
|
|
|
+ })
|
|
|
queryParams.value.page++;
|
|
|
if(res.data.list.length===0) isOver.value = true
|
|
|
})
|