From 6ce01389c8578b0ea41b2387f4e9b12c1c777dc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BB=95=E4=BC=9F?= <499672082@qq.com> Date: Wed, 2 Mar 2022 10:04:52 +0800 Subject: [PATCH] 27881 --- project/xiushan/apps/finance/AppLoanAudit/loanList.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue index b81ea62a..6c85fd78 100644 --- a/project/xiushan/apps/finance/AppLoanAudit/loanList.vue +++ b/project/xiushan/apps/finance/AppLoanAudit/loanList.vue @@ -77,8 +77,8 @@ export default { }, handleFilterApplyTime() { this.page.current = 1 - this.search.applyStartDate = this.search.applyTime?.[0] - this.search.applyEndDate = this.search.applyTime?.[1] + this.search.applyStartDate = this.search.applyTime?.[0].substring(0,10) + this.search.applyEndDate = this.search.applyTime?.[1].substring(0,10) this.getTableData() } },