|
@@ -190,7 +190,7 @@
|
|
|
label="是否开启缴费">
|
|
|
<template slot-scope="scope">
|
|
|
<div>
|
|
|
- {{scope.row.open?'是':'否'}}
|
|
|
+ {{ scope.row.open ? '是' : '否' }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -407,15 +407,14 @@ export default {
|
|
|
this.searchForm.id = this.id;
|
|
|
this.searchForm.page = this.rules.page;
|
|
|
this.searchForm.rows = this.rules.limit
|
|
|
- getmusicGroupPaymentCalenderDetail(this.searchForm).then(res => {
|
|
|
- if (res.code == 200) {
|
|
|
- this.rules.total = res.data.total;
|
|
|
- this.tableList = res.data.rows;
|
|
|
+ getmusicGroupPaymentCalenderDetail(this.searchForm).then(payment => {
|
|
|
+ if (payment.code == 200) {
|
|
|
+ this.rules.total = payment.data.total;
|
|
|
+ this.tableList = payment.data.rows;
|
|
|
if (this.info.paymentStatus == 1) {
|
|
|
this.tableList = this.tableList.map(item => {
|
|
|
item.startPaymentDate = this.info.startPaymentDate
|
|
|
item.deadlinePaymentDate = this.info.deadlinePaymentDate
|
|
|
- item.open = 1;
|
|
|
return item;
|
|
|
})
|
|
|
}
|