Geen omschrijving

index.html 954B

1234567891011121314151617181920212223242526272829303132
  1. <div class="sys_usercount_index">
  2. <div id="type" style="height:400px"></div>
  3. <div class="container dt-tpl">
  4. <div>用户流量</div>
  5. <table class="table table-bordered">
  6. <thead>
  7. <tr>
  8. <th>时间</th>
  9. <th>新增用户数</th>
  10. <th>新增激活用户数</th>
  11. <th>累计激活用户数</th>
  12. <th>累计注册用户数</th>
  13. </tr>
  14. </thead>
  15. <tbody>
  16. <tr ch-dir="list">
  17. <td>{{createTime}}</td>
  18. <td>{{znum-count}}</td>
  19. <td>{{jnum-count}}</td>
  20. <td>{{ljnum}}</td>
  21. <td>{{lznum}}</td>
  22. </tr>
  23. </tbody>
  24. <tbody ch-dir="array.empty">
  25. <tr>
  26. <td colspan="7">表格暂无数据</td>
  27. </tr>
  28. </tbody>
  29. </table>
  30. </div>
  31. </div>