Forráskód Böngészése

Merge branch 'dev/v1.5.75_tsz' of jianyu/page_bigmember_pc into feature/v1.5.75

汤世哲 1 éve
szülő
commit
964f5f5146
1 módosított fájl, 4 hozzáadás és 2 törlés
  1. 4 2
      src/components/push-list/PotentialList.vue

+ 4 - 2
src/components/push-list/PotentialList.vue

@@ -336,8 +336,10 @@ export default {
     async getListStatus (list) {
       const nameList = []
       if (!list) return
-      list.forEach(v => {
-        nameList.push(v.Buyer)
+      list.forEach((v, i) => {
+        if (i === 0) {
+          nameList.push(v.Buyer)
+        }
       })
       const { error_code: code, data } = await getStatusCustomer({ name_list: nameList })
       if (code === 0) {