123456789101112131415161718192021222324 |
- export default {
- methods: {
- backTrackingDMAIResolver(model, activeModel, context) {
- this.commonAIResolver(model, activeModel, context)
- return {
- localGroupIndicator: {
- label: '二次补录计划'
- },
- localRankInDisenroll: {
- label: '二次补录人数总排名'
- },
- localBestInIndicator: {
- label: '二次补录组合成绩最优人数'
- },
- localRankInBest: {
- label: '二次补录组合成绩最优排名'
- },
- localRankInRecommend: {
- label: '二次补录最优推荐录取排名'
- }
- }
- }
- }
- }
|