panhui 3 years ago
parent
commit
7771292589
1 changed files with 9 additions and 0 deletions
  1. 9 0
      src/views/HomePage.vue

+ 9 - 0
src/views/HomePage.vue

@@ -348,6 +348,15 @@ const batchStatus = computed(() => {
     }
     return ''
 })
+const stopOfficial = computed(() => {
+    let flag = false
+    list.value.forEach(item => {
+        if (item.sales > 0) {
+            flag = true
+        }
+    })
+    return flag
+})
 const listRef = ref(null)
 function handleScroll() {
     listRef.value.check()