lrf402788946 4 年之前
父节点
当前提交
8c6cf57070
共有 1 个文件被更改,包括 2 次插入4 次删除
  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);
       }
     },