|
@@ -258,6 +258,7 @@
|
|
|
>
|
|
|
<pay-items
|
|
|
v-if="itemsVisible"
|
|
|
+ ref="payItems"
|
|
|
:batchNo="viewDetail && viewDetail.batchNo"
|
|
|
payUserType="STUDENT"
|
|
|
:teamStatus="teamStatus"
|
|
@@ -306,6 +307,7 @@
|
|
|
width='800px'>
|
|
|
<setStudentFee @chioseStudent='chioseStudent'
|
|
|
ref='setStudentFee'
|
|
|
+ :batchNo="batchNo"
|
|
|
:musicGroupPaymentCalenderId="musicGroupPaymentCalenderId"
|
|
|
@submited="chioseStudentSubmited"
|
|
|
:clearTale="clearStduent"></setStudentFee>
|
|
@@ -422,6 +424,7 @@ export default {
|
|
|
chioseStudentVisible: false,
|
|
|
chioseStudentList: [],
|
|
|
clearStduent: true,
|
|
|
+ batchNo: "",
|
|
|
musicGroupPaymentCalenderId: "",
|
|
|
payOrderTypeLists: payOrderTypeList,
|
|
|
getMoneyVisible: false
|
|
@@ -597,6 +600,7 @@ export default {
|
|
|
return stu.userId;
|
|
|
});
|
|
|
obj.musicGroupPaymentCalenderId = this.musicGroupPaymentCalenderId;
|
|
|
+ this.$refs.payItems?.getList()
|
|
|
musicGroupPaymentCalenderDetailBatchAdd(obj).then((res) => {
|
|
|
if (res.code == 200) {
|
|
|
this.$message.success("添加成功");
|
|
@@ -667,6 +671,7 @@ export default {
|
|
|
},
|
|
|
openChioseStudent (row) {
|
|
|
this.chioseStudentVisible = true;
|
|
|
+ this.batchNo = row.batchNo;
|
|
|
this.musicGroupPaymentCalenderId = row.id;
|
|
|
},
|
|
|
async payedSubmited (data) {
|