소스 검색

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

汤世哲 1 년 전
부모
커밋
964f5f5146
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  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) {