|
@@ -4,6 +4,9 @@
|
|
|
<h2>
|
|
|
<div class="squrt"></div>
|
|
|
合作单位缴费
|
|
|
+ <auth auths="musicGroupCalenderRefundPeriod/queryCoopCalender">
|
|
|
+ <filter-search :keys="['searchType']" @reload="onReSet" />
|
|
|
+ </auth>
|
|
|
</h2>
|
|
|
<div class="m-core">
|
|
|
<save-form
|
|
@@ -54,7 +57,6 @@
|
|
|
</el-form-item>
|
|
|
</save-form>
|
|
|
<div style="font-size: 14px; color: #f85043; padding-bottom: 10px">
|
|
|
-
|
|
|
欠费总额:{{ amount | moneyFormat }}元<i
|
|
|
style="width: 10px; display: inline-block"
|
|
|
></i>
|
|
@@ -125,7 +127,6 @@
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
@@ -137,7 +138,7 @@ import { getTimes } from "@/utils";
|
|
|
import load from "@/utils/loading";
|
|
|
import { backTypeList } from "@/utils/searchArray";
|
|
|
import { Export } from "@/utils/downLoadFile";
|
|
|
-import { getCoopRefundList } from './api'
|
|
|
+import { getCoopRefundList } from "./api";
|
|
|
import { queryByOrganId } from "@/api/systemManage";
|
|
|
import qs from "qs";
|
|
|
export default {
|
|
@@ -150,7 +151,7 @@ export default {
|
|
|
organId: null,
|
|
|
backTime: [],
|
|
|
payTime: [],
|
|
|
- returnFeeFlag:null
|
|
|
+ returnFeeFlag: null,
|
|
|
},
|
|
|
backTypeList,
|
|
|
tableList: [],
|
|
@@ -167,7 +168,7 @@ export default {
|
|
|
id: null,
|
|
|
},
|
|
|
resetVisible: false,
|
|
|
- amount:0
|
|
|
+ amount: 0,
|
|
|
};
|
|
|
},
|
|
|
//生命周期 - 创建完成(可以访问当前this实例)
|
|
@@ -188,12 +189,13 @@ export default {
|
|
|
...this.searchForm,
|
|
|
page: this.rules.page,
|
|
|
rows: this.rules.limit,
|
|
|
+ errorType: this.$route.query.filter_type,
|
|
|
};
|
|
|
try {
|
|
|
const res = await getCoopRefundList(params);
|
|
|
this.tableList = res.data.pageInfo.rows;
|
|
|
this.rules.total = res.data.pageInfo.total;
|
|
|
- this.amount = res.data.amount
|
|
|
+ this.amount = res.data.amount;
|
|
|
} catch (e) {
|
|
|
console.log(e);
|
|
|
}
|
|
@@ -207,7 +209,10 @@ export default {
|
|
|
this.search();
|
|
|
},
|
|
|
gotoDetail(row) {
|
|
|
- this.$router.push({path:'/financialManager/payschoolList',query:{id:row.cooperationOrganId,name:row.cooperationOrganName}})
|
|
|
+ this.$router.push({
|
|
|
+ path: "/financialManager/payschoolList",
|
|
|
+ query: { id: row.cooperationOrganId, name: row.cooperationOrganName },
|
|
|
+ });
|
|
|
// /financialManager/payschoolList
|
|
|
},
|
|
|
|