diff --git a/src/views/contract/paymentRegistrationList.vue b/src/views/contract/paymentRegistrationList.vue index 230a6c7..aaf1a65 100644 --- a/src/views/contract/paymentRegistrationList.vue +++ b/src/views/contract/paymentRegistrationList.vue @@ -496,7 +496,7 @@ export default { await getFundLog({ page_size: this.pageSize, page: this.pageIndex, - keyword: this.keyword, + keyword: this.keywords, date: this.selectDate, status: this.status, act_plan_link_id: this.select.plan_id, @@ -505,7 +505,7 @@ export default { if (is_export) { var url = "/api/admin/fund_log/index?token=" + tokens; if (this.selectDate) url += "&date=" + this.selectDate; - if (this.keyword) url += "&keyword=" + this.keyword; + if (this.keywords) url += "&keyword=" + this.keywords; if (typeof this.status != "undefined") url += "&status=" + this.status; if (this.select.plan_id)