From 50e7b59d1bfb928d1a759cf8b15c2209881b7ff3 Mon Sep 17 00:00:00 2001 From: xuyiming Date: Tue, 3 Nov 2020 09:58:47 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E6=8A=80=E6=9C=AF=E6=94=AF=E6=8C=81-?= =?UTF-8?q?=E9=97=AE=E7=AD=94=E4=B8=AD=E5=BF=83=E3=80=91=E8=B4=A1=E7=8C=AE?= =?UTF-8?q?=E6=A6=9C=E6=95=B0=E9=87=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/technical-support/answer-center/index.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/technical-support/answer-center/index.vue b/src/pages/technical-support/answer-center/index.vue index ab021d2..7ff7501 100644 --- a/src/pages/technical-support/answer-center/index.vue +++ b/src/pages/technical-support/answer-center/index.vue @@ -42,13 +42,13 @@ -
+

本月提问贡献榜

  • @@ -69,7 +69,7 @@ export default { return { userInfo: null, contributorAnswerList: null, - contributorQuizList: null, + contributorQuestionList: null, head_pic: require("../../../assets/imgs/img_head.png"), }; }, @@ -87,7 +87,7 @@ export default { }, getAnwerList() { this.$http - .get("/apaas/support/qa/question/contribution") + .get("/apaas/support/qa/answer/contribution") .then(({ data }) => { if (data.success) { this.contributorAnswerList = data.data || []; @@ -95,10 +95,10 @@ export default { }); this.$http - .get("/apaas/support/qa/answer/contribution") + .get("/apaas/support/qa/question/contribution") .then(({ data }) => { if (data.success) { - this.contributorQuizList = data.data || []; + this.contributorQuestionList = data.data || []; } }); }, -- 2.26.0