Showing
1 changed file
with
1 additions
and
1 deletions
@@ -395,7 +395,7 @@ var g = new common.grid({ | @@ -395,7 +395,7 @@ var g = new common.grid({ | ||
395 | if(item.nums) html += item.nums +'</p>'; | 395 | if(item.nums) html += item.nums +'</p>'; |
396 | else html += '</p>'; | 396 | else html += '</p>'; |
397 | html += '<p>周转天数:'+'<br>'; | 397 | html += '<p>周转天数:'+'<br>'; |
398 | - if(item.days) html += item.days +'</p>'; | 398 | + if(item.days) html += item.days.toFixed(0) +'</p>'; |
399 | else html += '</p>'; | 399 | else html += '</p>'; |
400 | return html; | 400 | return html; |
401 | }}, | 401 | }}, |
-
Please register or login to post a comment