lrf402788946 4 éve
szülő
commit
8c6cf57070
1 módosított fájl, 2 hozzáadás és 4 törlés
  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);
       }
     },