|
@@ -301,6 +301,7 @@
|
|
|
width='800px'>
|
|
|
<setStudentFee @chioseStudent='chioseStudent'
|
|
|
ref='setStudentFee'
|
|
|
+ :batchNo="batchNo"
|
|
|
:musicGroupPaymentCalenderId="musicGroupPaymentCalenderId"
|
|
|
@submited="chioseStudentSubmited"
|
|
|
:clearTale="clearStduent"></setStudentFee>
|
|
@@ -433,6 +434,7 @@ export default {
|
|
|
chioseStudentVisible: false,
|
|
|
chioseStudentList: [],
|
|
|
clearStduent: true,
|
|
|
+ batchNo: "",
|
|
|
musicGroupPaymentCalenderId: "",
|
|
|
teamType: this.$route.query.type,
|
|
|
payOrderTypeLists: payOrderTypeList,
|
|
@@ -612,7 +614,7 @@ export default {
|
|
|
obj.userIdList = this.chioseStudentList.map((stu) => {
|
|
|
return stu.userId;
|
|
|
});
|
|
|
- obj.musicGroupPaymentCalenderId = this.musicGroupPaymentCalenderId;
|
|
|
+ obj.batchNo = this.batchNo;
|
|
|
musicGroupPaymentCalenderDetailBatchAdd(obj).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.$message.success("添加成功");
|
|
@@ -683,7 +685,8 @@ export default {
|
|
|
},
|
|
|
openChioseStudent (row) {
|
|
|
this.chioseStudentVisible = true;
|
|
|
- this.musicGroupPaymentCalenderId = row.id;
|
|
|
+ this.batchNo = row.batchNo;
|
|
|
+ this.musicGroupPaymentCalenderId = row.id
|
|
|
},
|
|
|
async payedSubmited (data) {
|
|
|
try {
|