caipin 5 년 전
부모
커밋
52a10eb8a2
1개의 변경된 파일10개의 추가작업 그리고 4개의 파일을 삭제
  1. 10 4
      global/js/cloud/buildHtml.js

+ 10 - 4
global/js/cloud/buildHtml.js

@@ -19,13 +19,19 @@ function buildClientBySearch(data){
 function fnStructureCuringUser(data){
     var html='';
     $.each(data, function(k, v) {
-        html+='<tr curingInfoEdi dataCid="'+setUndefined(v.client_id)+'" data='+setUndefined(v.sso_id)+' dataId="'+setUndefined(v.id)+'" data-toggle="modal" data-target="#detail">';
+        html+='<tr curingInfoEdi dataCid="'+setUndefined(v.client_id)+'" data='+setUndefined(v.sso_id)+' dataId="'+setUndefined(v._id)+'" data-toggle="modal" data-target="#detail">';
         html+='<td>'+setUndefined(v.mobile)+'</td>';
-        html+='<td>'+setUndefined(v.curingCompany)+'</td>';
+        html+='<td>'+setUndefined(v.company)+'</td>';
         html+='<td>'+setUndefined(v.clientInfo.clientname)+'</td>';
         html+='<td>'+setUndefined(v.clientInfo.companyname)+'</td>';
-        html+='<td><span class="badge badge-primary">'+v.updateTotal+'</span></td>';
-        html+='<td>'+v.addtime+'</td>';
+        
+        html+='<td>'+setUndefined(v.latest_login)+'</td>';
+        html+='<td>'+setUndefined(v.latest_usedName)+'</td>';
+        html+='<td>'+setUndefined(v.online_newest)+'</td>';
+        html+='<td>'+setUndefined(v.addtime)+'</td>';
+        html+='<td>'+setUndefined(v.upgradeListName)+'</td>';
+        
+       
         html+='</tr>';
     });
     $('tbody[curingUser]').html(html);