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(); },