|
@@ -605,7 +605,7 @@ export default {
|
|
|
obj.musicGroupId = this.teamid;
|
|
|
// 有type 到审核 没有 继续草稿
|
|
|
if (type) {
|
|
|
- obj.musicGroupStatus = "AUDIT";
|
|
|
+ obj.musicGroupStatus = "DRAFT";
|
|
|
} else {
|
|
|
obj.musicGroupStatus = "DRAFT";
|
|
|
}
|
|
@@ -617,7 +617,7 @@ export default {
|
|
|
noMusic.join(",") +
|
|
|
"尚未设置乐器,学员报名该声部时将无乐器可购买,是否确认?";
|
|
|
} else {
|
|
|
- str = "是否提交审核";
|
|
|
+ str = "是否设置缴费信息";
|
|
|
}
|
|
|
this.$confirm(str, "提示", {
|
|
|
confirmButtonText: "确定",
|
|
@@ -628,10 +628,17 @@ export default {
|
|
|
updateSubjectInfo(obj).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.$message.success("提交成功");
|
|
|
- this.$store.dispatch("delVisitedViews", this.$route);
|
|
|
- this.$router.push({
|
|
|
+
|
|
|
+ if(type== 3){
|
|
|
+
|
|
|
+ this.$emit('chiosetab',type)
|
|
|
+ }else{
|
|
|
+ this.$store.dispatch("delVisitedViews", this.$route);
|
|
|
+ this.$router.push({
|
|
|
path: "/teamList",
|
|
|
});
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
});
|
|
|
})
|