This commit is contained in:
xbx 2024-03-27 16:22:27 +08:00
parent 7a17e9a0ed
commit 0ef20f7d29
1 changed files with 1 additions and 3 deletions

View File

@ -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() {