|
@@ -1133,20 +1133,23 @@ export default {
|
|
|
this.soundList = res.data;
|
|
|
}
|
|
|
});
|
|
|
-
|
|
|
+ // this.getMusicClass()
|
|
|
// 获取乐团基本信息
|
|
|
getMusicGroup({ musicGroupId: this.teamid }).then(
|
|
|
(res) => (this.baseInfo = res.data)
|
|
|
);
|
|
|
// 获取乐团所有合奏课
|
|
|
- getMusicGroupAllClass({ musicGroupId: this.teamid }).then((res) => {
|
|
|
+
|
|
|
+ },
|
|
|
+ getMusicClass(){
|
|
|
+ getMusicGroupAllClass({ musicGroupId: this.teamid }).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.classList = res.data;
|
|
|
this.signList = [];
|
|
|
this.mixList = [];
|
|
|
this.highList = [];
|
|
|
this.snapList = [];
|
|
|
-
|
|
|
+ this.highonlineList = [];
|
|
|
this.classList.forEach((item) => {
|
|
|
if (item.type == "NORMAL") {
|
|
|
this.signList.push(item);
|
|
@@ -1739,7 +1742,11 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
watch: {
|
|
|
-
|
|
|
+ createUserPayVisible(val){
|
|
|
+ if(val){
|
|
|
+ this.getMusicClass()
|
|
|
+ }
|
|
|
+ },
|
|
|
"quitForm.isMaintenanceFee"(val) {
|
|
|
if (val) {
|
|
|
this.quitForm.maintenanceFee = 300;
|