1234567891011121314151617181920212223242526272829303132333435 |
- <div class="col-md-10">
- <div class="panel-heading"><h3>系统监控</h3></div>
- <!-- Table -->
- <table class=" col-md-3">
- <thead>
- <tr>
- <th>cpu</th>
-
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="item in list">
- <th scope="row">{{ }}</th>
-
-
- </tr>
- </tbody>
- </table>
- <table class=" col-md-3 col-md-offset-3">
- <thead>
- <tr>
- <th>cpu</th>
-
- </tr>
- </thead>
- <tbody>
- <tr ng-repeat="item in list">
- <th scope="row">{{ }}</th>
-
-
- </tr>
- </tbody>
- </table>
- </div>
-
|