|
@@ -103,7 +103,7 @@
|
|
|
trigger="click"
|
|
|
>
|
|
|
<div>
|
|
|
- 确定拒绝系统给您推荐的<span class="f-primary">{{recommendGroup.groupName}}</span>组合么?
|
|
|
+ 确定拒绝系统给您推荐的<span class="f-primary">{{ recommendGroup.groupName }}</span>组合么?
|
|
|
<el-input
|
|
|
type="textarea"
|
|
|
:rows="4"
|
|
@@ -287,7 +287,14 @@ export default {
|
|
|
const stepMatched = this.generation.active == this.generation.current
|
|
|
const enableApply = !this.generation.currentOpt.decisionMaking
|
|
|
const enableSignUp = stepMatched && enableApply && !this.readonly
|
|
|
+
|
|
|
return {
|
|
|
+ rankInGroup: {
|
|
|
+ label: '当前组合实时排名'
|
|
|
+ },
|
|
|
+ rankInGrade: {
|
|
|
+ label: '选科全校排名'
|
|
|
+ },
|
|
|
allowSelectTips: {
|
|
|
label: '报名状态'
|
|
|
},
|
|
@@ -356,8 +363,6 @@ export default {
|
|
|
const matchedMajors = this.optionalMajors.filter(college => college.matchedGroupIds.includes(row.groupId))
|
|
|
row.colleges = matchedMajors.map(m => ({ college: m.collegeName, major: m.majorCategoryName }))
|
|
|
row.subjects = matchedMajors.map(m => m['majorCategoryName'])
|
|
|
- // this.$set(row,'colleges',matchedMajors.map(m => ({ college: m.collegeName, major: m.majorCategoryName })))
|
|
|
- // this.$set(row,'subjects',matchedMajors.map(m => m['majorCategoryName']))
|
|
|
return row
|
|
|
})
|
|
|
},
|
|
@@ -502,7 +507,7 @@ export default {
|
|
|
},
|
|
|
async handleRejectRecommend() {
|
|
|
await this.$confirm(`拒绝系统给您推荐的${this.recommendGroup.groupName}组合可能会导致您无法正常录取,确认继续?`)
|
|
|
- if(!this.regInfo.length) {
|
|
|
+ if (!this.regInfo.length) {
|
|
|
this.$message.error('拒绝原因不能为空')
|
|
|
return
|
|
|
}
|
|
@@ -512,7 +517,7 @@ export default {
|
|
|
rejectRecommend({
|
|
|
models: rejectRow
|
|
|
}).then(res => {
|
|
|
- if(res.code == 200) {
|
|
|
+ if (res.code == 200) {
|
|
|
this.refreshData()
|
|
|
}
|
|
|
}).finally(_ => {
|