Jelajahi Sumber

实验室环境温湿度要求一览表(恒生)

shenqilong 7 bulan lalu
induk
melakukan
f9c7366dcb
1 mengubah file dengan 11 tambahan dan 7 penghapusan
  1. 11 7
      src/views/component/fascGuidang/fascGuidang.vue

+ 11 - 7
src/views/component/fascGuidang/fascGuidang.vue

@@ -142,13 +142,17 @@ export default {
   },
   },
   computed: {
   computed: {
     fascDataFilter() {
     fascDataFilter() {
-      const list = this.fascData.slice(
-        (this.requestPage.pageNo - 1) * this.requestPage.limit,
-        (this.requestPage.pageNo - 1) * this.requestPage.limit +
-          this.requestPage.limit
-      )
-      this.getSpanArr(list)
-      return list
+      if (this.fascData) {
+        const list = this.fascData.slice(
+          (this.requestPage.pageNo - 1) * this.requestPage.limit,
+          (this.requestPage.pageNo - 1) * this.requestPage.limit +
+            this.requestPage.limit
+        )
+        this.getSpanArr(list)
+        return list
+      } else {
+        return []
+      }
     }
     }
   },
   },
   watch: {
   watch: {