|
@@ -179,7 +179,7 @@ export default {
|
|
this.activitylogList = response.rows.map(e => {
|
|
this.activitylogList = response.rows.map(e => {
|
|
e.pointStatus = e.pointStatus == 0 ? '未发放' : '已发放';
|
|
e.pointStatus = e.pointStatus == 0 ? '未发放' : '已发放';
|
|
e.checkinStatus = e.checkinStatus == 0 ? '报名' : '签到';
|
|
e.checkinStatus = e.checkinStatus == 0 ? '报名' : '签到';
|
|
- e.activity.typeText = this.typeOptions.find(j => j.value == e.activity.type)?.label;
|
|
|
|
|
|
+ if (e.activity) e.activity.typeText = this.typeOptions.find(j => j.value == e.activity.type)?.label;
|
|
return e;
|
|
return e;
|
|
});
|
|
});
|
|
this.total = response.total;
|
|
this.total = response.total;
|