cxmo 1 year ago
parent
commit
9a5c950a32

+ 12 - 0
src/views/custom_manage/overseasList/components/totalClicksDialog.vue

@@ -100,6 +100,12 @@ export default {
                     if(res.Ret!==200) return 
                     this.dataList = res.Data.List || []
                     this.total = res.Data.Paging.Totals
+                    this.dataList = this.dataList.map(i=>{
+                        return {
+                            ...i,
+                            Email:(i.Mobile?i.Mobile:i.Email)||''
+                        }
+                    })
                 })
             }else{
                 customInterence.getZNCustomClickList({
@@ -110,6 +116,12 @@ export default {
                     if(res.Ret!==200) return 
                     this.dataList = res.Data.List||[]
                     this.total = res.Data.Paging.Totals
+                    this.dataList = this.dataList.map(i=>{
+                        return {
+                            ...i,
+                            Email:(i.Mobile?i.Mobile:i.Email)||''
+                        }
+                    })
                 })
             }
         },