|
@@ -469,8 +469,9 @@ import reviewDetail from "../modals/review-detail";
|
|
|
import { userPaymentType } from "@/constant";
|
|
|
import { objectToOptions } from "@/utils";
|
|
|
import { payOrderTypeList } from "@/utils/searchArray";
|
|
|
+import { getTeamBaseInfo } from "@/api/buildTeam";
|
|
|
export default {
|
|
|
- props: ["baseInfo", "isNewGropu"],
|
|
|
+ props: [ "isNewGropu"],
|
|
|
components: {
|
|
|
pagination,
|
|
|
setStudentFee,
|
|
@@ -536,6 +537,7 @@ export default {
|
|
|
musicGroupPaymentCalenderId: "",
|
|
|
payOrderTypeLists: payOrderTypeList,
|
|
|
getMoneyVisible: false,
|
|
|
+ baseInfo:null
|
|
|
};
|
|
|
},
|
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
@@ -579,6 +581,11 @@ export default {
|
|
|
musicGroupId: this.$route.query.id,
|
|
|
});
|
|
|
} catch (error) {}
|
|
|
+ getTeamBaseInfo({ musicGroupId: this.$route.query.id }).then((res) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.baseInfo = res.data;
|
|
|
+ }
|
|
|
+ });
|
|
|
this.getList();
|
|
|
},
|
|
|
newUserPay() {
|