From cc629aa5b40ad337a3469350e74b7dc931bef2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0?= <15071126431@163.com> Date: Fri, 14 May 2021 16:40:38 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E9=AA=8C=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/Studentcommon/FictitiousList.vue | 4 +- .../common/Studentcommon/TeachingList.vue | 64 +++++++++++-- .../common/Studentcommon/competitionList.vue | 89 +++++++++++++++++++ .../common/Studentcommon/registration.vue | 32 +++++-- src/utils/api.js | 1 + 5 files changed, 173 insertions(+), 17 deletions(-) create mode 100644 src/components/common/Studentcommon/competitionList.vue diff --git a/src/components/common/Studentcommon/FictitiousList.vue b/src/components/common/Studentcommon/FictitiousList.vue index 1b6f261..635c58a 100644 --- a/src/components/common/Studentcommon/FictitiousList.vue +++ b/src/components/common/Studentcommon/FictitiousList.vue @@ -56,11 +56,11 @@ export default { this.getData() }, getData() { - this.$get(this.api.fictitiousRecord, { + this.$post(this.api.fictitiousRecord, { userId: this.userId, page: this.pageNo, size: this.pageSize, - projectPermissions: 0, + source: 0, systemId: 3 }) .then(res => { diff --git a/src/components/common/Studentcommon/TeachingList.vue b/src/components/common/Studentcommon/TeachingList.vue index fd18725..f6c5b42 100644 --- a/src/components/common/Studentcommon/TeachingList.vue +++ b/src/components/common/Studentcommon/TeachingList.vue @@ -1,15 +1,26 @@