diff --git a/src/pages/technical-support/answer-center/index.vue b/src/pages/technical-support/answer-center/index.vue
index ab021d2172f4ed3560cf1973e0f9c7b744b250e6..7ff750199bf56f0ee91ce71e15a60548e2448d3c 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 || [];
}
});
},