|
@@ -440,7 +440,14 @@ export default {
|
|
|
|
|
|
},
|
|
|
resetPayDate () {
|
|
|
- resetMusicGroupPaymentCalender({ id: this.activeRow.id, startTime: this.payForm.startPaymentDate, endTime: this.payForm.deadlinePaymentDate }).then(res => {
|
|
|
+ resetMusicGroupPaymentCalender({
|
|
|
+ id: this.activeRow.id,
|
|
|
+ startTime: this.payForm.startPaymentDate,
|
|
|
+ endTime: this.payForm.deadlinePaymentDate,
|
|
|
+ paymentValidStartDate: this.payForm.paymentValidStartDate ? dayjs(this.payForm.paymentValidStartDate).format('YYYY-MM-DD') : this.payForm.paymentValidStartDate,
|
|
|
+ paymentValidEndDate: this.payForm.paymentValidEndDate ? dayjs(this.payForm.paymentValidEndDate).format('YYYY-MM-DD') : this.payForm.paymentValidEndDate,
|
|
|
+ paymentPattern: this.payForm.paymentPattern,
|
|
|
+ }).then(res => {
|
|
|
if (res.code == 200) {
|
|
|
this.$message.success('修改成功')
|
|
|
this.payVisible = false;
|