From 283d33ddc6d1af9d850bbd9638f98671923315ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E7=BF=94=E5=AE=87-=E6=97=85=E7=AE=A1=E5=AE=B6?= <153298343@qq.com> Date: Wed, 19 Oct 2022 08:47:07 +0800 Subject: [PATCH] up --- src/views/finance/paymentRegistrationList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/finance/paymentRegistrationList.vue b/src/views/finance/paymentRegistrationList.vue index 246b4a3..6913dfb 100644 --- a/src/views/finance/paymentRegistrationList.vue +++ b/src/views/finance/paymentRegistrationList.vue @@ -380,10 +380,10 @@ url += "&date=" + this.selectDate; if (this.keyword) url += "&keyword=" + this.keyword; - if (this.status) + if (typeof(this.status) != "undefined") url += "&status=" + this.status; - if (this.plan_id) - url += "&act_plan_link_id=" + this.plan_id; + if (this.select.plan_id) + url += "&act_plan_link_id=" + this.select.plan_id; url += "&is_export=" + this.is_export; url = location.host + url; console.log(url)