From 0ef20f7d2981543d07779a6cc3b5bd3f7daa6cf4 Mon Sep 17 00:00:00 2001 From: xbx <1827135378@qq.com> Date: Wed, 27 Mar 2024 16:22:27 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/dashboard/Analysis/index.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/dashboard/Analysis/index.vue b/src/views/dashboard/Analysis/index.vue index daf59a6..4a22c87 100644 --- a/src/views/dashboard/Analysis/index.vue +++ b/src/views/dashboard/Analysis/index.vue @@ -81,7 +81,6 @@ export default { this.college = this.collegeOptions[0].value; this.entrydateOptions = getEntrydate.entrydates; this.entrydate = this.entrydateOptions[0].value; - this.query(); }, // 查询数据 async query() { @@ -89,10 +88,9 @@ export default { college: this.college, entrydate: this.entrydate } - const data = await defHttp.get({ url: this.Url.getData, params }); + const result = await defHttp.get({ url: this.Url.getData, params }); this.dataSourceCet4 = result.data.cet4; this.dataSourceCet6 = result.data.cet6; - this.$message.info(`查询结果:${JSON.stringify(data)}`); } }, mounted() {