watch_1.html 496 B

1234567891011121314151617181920212223242526272829303132333435
  1. <div class="col-md-10">
  2. <div class="panel-heading"><h3>系统监控</h3></div>
  3. <!-- Table -->
  4. <table class=" col-md-3">
  5. <thead>
  6. <tr>
  7. <th>cpu</th>
  8. </tr>
  9. </thead>
  10. <tbody>
  11. <tr ng-repeat="item in list">
  12. <th scope="row">{{ }}</th>
  13. </tr>
  14. </tbody>
  15. </table>
  16. <table class=" col-md-3 col-md-offset-3">
  17. <thead>
  18. <tr>
  19. <th>cpu</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr ng-repeat="item in list">
  24. <th scope="row">{{ }}</th>
  25. </tr>
  26. </tbody>
  27. </table>
  28. </div>