|
@@ -2,14 +2,14 @@ export default {
|
|
|
methods: {
|
|
|
backTrackingDMResolver(gen) {
|
|
|
const models = this.generation.activeModels.find(item => item.generation == gen).models
|
|
|
- const generation = this.generation.activeModels.find(item => item.generation == gen).generation
|
|
|
|
|
|
this.formatRows.forEach(item => {
|
|
|
const currentGroup = models.find(group => group.groupId == item.groupId) || {}
|
|
|
item.supplyIndicator = currentGroup.nextGroupIndicator
|
|
|
// 录取人数加指标/ 设置人数
|
|
|
- item.backTrackingApply = `${currentGroup.groupApprovedCount + currentGroup.actualCount} /${currentGroup.personCount}`
|
|
|
- item.supplyRecord = `${currentGroup.groupApprovedCount + currentGroup.actualCount} /${currentGroup.personCount}`
|
|
|
+ item.backTrackingApply = `${currentGroup.actualCount} /${currentGroup.groupIndicator}`
|
|
|
+ // item.backTrackingApply = `${currentGroup.groupApprovedCount + currentGroup.actualCount} /${currentGroup.personCount}`
|
|
|
+ // item.supplyRecord = `${currentGroup.groupApprovedCount + currentGroup.actualCount} /${currentGroup.personCount}`
|
|
|
})
|
|
|
|
|
|
return {
|