From 4c1df324984f71cba01972cbe5664c6b3a391571 Mon Sep 17 00:00:00 2001 From: wanglei Date: Sat, 29 Jun 2024 10:14:26 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B8=B8=E4=BD=8F=E4=BA=BA=E5=8F=A3=E7=99=BB?= =?UTF-8?q?=E8=AE=B0=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dangan-ui/src/views/dangan/czrkdj/index.vue | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dangan-ui/src/views/dangan/czrkdj/index.vue b/dangan-ui/src/views/dangan/czrkdj/index.vue index 7e39a23..91a0652 100644 --- a/dangan-ui/src/views/dangan/czrkdj/index.vue +++ b/dangan-ui/src/views/dangan/czrkdj/index.vue @@ -2080,8 +2080,10 @@ export default { }; }, created() { - this.queryParams.muId = this.$route.query.muId; - this.queryParams.ywType = this.$route.query.ywType; + if(this.$route.query.muId && this.$route.query.ywType){ + this.queryParams.muId = this.$route.query.muId; + this.queryParams.ywType = this.$route.query.ywType; + } this.getList(); }, methods: { @@ -2228,6 +2230,7 @@ export default { }, /** 搜索按钮操作 */ handleQuery() { + console.log(33); this.queryParams.pageNum = 1; this.getList(); },