|
@@ -331,8 +331,11 @@
|
|
|
<!-- 年纪班级修改 -->
|
|
|
<el-table-column align="center" label="年级班级">
|
|
|
<template slot-scope="scope">
|
|
|
-
|
|
|
- <div v-if="gradeListObj[scope.row.currentGrade]">{{ gradeListObj[scope.row.currentGrade] + scope.row.currentClass }}</div>
|
|
|
+ <div v-if="gradeListObj[scope.row.currentGrade]">
|
|
|
+ {{
|
|
|
+ gradeListObj[scope.row.currentGrade] + scope.row.currentClass
|
|
|
+ }}
|
|
|
+ </div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<!-- <el-table-column align="center" label="报名专业" prop="subjectName">
|
|
@@ -1178,7 +1181,8 @@ export default {
|
|
|
organId: "",
|
|
|
addTryVisible: false,
|
|
|
memberRankList: [],
|
|
|
- gradeListObj:{}
|
|
|
+ isManage: false,
|
|
|
+ gradeListObj: {},
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -1248,7 +1252,7 @@ export default {
|
|
|
// }
|
|
|
getMusicGroupGradeList({ musicGroupId: this.teamid }).then((res) => {
|
|
|
let result = res.data;
|
|
|
- this.gradeListObj = res.data
|
|
|
+ this.gradeListObj = res.data;
|
|
|
if (res.code == 200 && result) {
|
|
|
for (let i in result) {
|
|
|
this.gradeList.push({
|
|
@@ -1506,7 +1510,24 @@ export default {
|
|
|
reason: "",
|
|
|
};
|
|
|
if (res.code == 200) {
|
|
|
- this.$message.success("退团成功");
|
|
|
+ this.quitForm = {
|
|
|
+ // 退团信息确认
|
|
|
+ isRefundCourseFee: null,
|
|
|
+ isRefundInstrumentFee: null,
|
|
|
+ isRefundTeachingAssistantsFee: null,
|
|
|
+ courseViewType: null,
|
|
|
+ hasMaintenance: null,
|
|
|
+ studentName: null,
|
|
|
+ musicGroupName: null,
|
|
|
+ isVisit: false,
|
|
|
+ reason: "",
|
|
|
+ userComment: null,
|
|
|
+ };
|
|
|
+ if (this.isManage == "super") {
|
|
|
+ this.$message.success("退团成功");
|
|
|
+ } else {
|
|
|
+ this.$message.success("退团申请成功");
|
|
|
+ }
|
|
|
this.getList();
|
|
|
this.quitVisible = false;
|
|
|
}
|