lrf402788946 4 years ago
parent
commit
8c6cf57070
1 changed files with 2 additions and 4 deletions
  1. 2 4
      src/views/techolchat/index.vue

+ 2 - 4
src/views/techolchat/index.vue

@@ -137,14 +137,12 @@ export default {
       // 调研调查
       res = await this.questionQuery({ skip, limit: 2, ...info });
       if (this.$checkRes(res)) {
-        const data = this.toLimit(res.data);
-        this.$set(this, `questionList`, data);
+        this.$set(this, `questionList`, res.data);
       }
       // 问卷调查
       res = await this.getQuest({ skip, limit: 2 });
       if (this.$checkRes(res)) {
-        const data = this.toLimit(res.data);
-        this.$set(this, `questionnaireList`, data);
+        this.$set(this, `questionnaireList`, res.data);
       }
     },