|
@@ -142,13 +142,10 @@
|
|
|
@click="lookDetail(scope.row)"
|
|
|
v-permission="'/strudentPayInfo'">查看</el-button>
|
|
|
<el-button type="text"
|
|
|
- v-if="scope.row.paymentStatus == 0"
|
|
|
+ v-if="scope.row.status == 'REJECT'"
|
|
|
v-permission="'musicGroupPaymentCalender/updateStartTime'"
|
|
|
@click="resetPay(scope.row)">修改</el-button>
|
|
|
- <el-button type="text"
|
|
|
- v-permission="'musicGroupPaymentCalender/del'"
|
|
|
- v-if="scope.row.paymentStatus == 0"
|
|
|
- @click="detelePay(scope.row)">删除</el-button>
|
|
|
+
|
|
|
<el-button type="text" v-if="!isNewGropu" @click="onCreateQRCode(scope.row)">续费二维码</el-button>
|
|
|
</div>
|
|
|
</template>
|
|
@@ -464,7 +461,7 @@ export default {
|
|
|
const res = await getMusicGroupStu({
|
|
|
musicGroupId: this.$route.query.id,
|
|
|
});
|
|
|
- console.log(res);
|
|
|
+
|
|
|
} catch (error) {}
|
|
|
this.getList();
|
|
|
},
|
|
@@ -641,6 +638,15 @@ export default {
|
|
|
onReSet() {
|
|
|
this.searchForm = { payUserType: null };
|
|
|
},
|
|
|
+ async payedSubmited(data) {
|
|
|
+ try {
|
|
|
+ await this.getList();
|
|
|
+ this.chioseStudentVisible = true;
|
|
|
+ if (data) {
|
|
|
+ this.musicGroupPaymentCalenderId = data.musicGroupPaymentCalenderId;
|
|
|
+ }
|
|
|
+ } catch (error) {}
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
chioseStudentVisible() {
|