export default { methods: { backTrackingResolver(gen, active,context) { const models = this.generation.activeModels.find(item => item.generation == gen).models this.formatRows.forEach(item => { const currentGroup = models.find(group => group.groupId == item.groupId) || {} item.backTrackingApply = `${currentGroup.actualCount} /${currentGroup.groupIndicator}` }) if (active < 4) { return { backTrackingApply: { label: '补录报名情况' } } } else { return {} } } } }