| | |
| | | <span>{{ scope.row.desc }} </span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="CPU" width="150"> |
| | | <el-table-column label="CPU"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.cpu.toFixed(2) }} %</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="内存" width="150"> |
| | | <el-table-column label="内存"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.mem.toFixed(2) }} %</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | <!-- <el-table-column |
| | | prop="disk" |
| | | label="硬盘" |
| | | width="150" |
| | | ></el-table-column> |
| | | <el-table-column label="算力" width="150"> |
| | | ></el-table-column> --> |
| | | <el-table-column label="算力"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ scope.row.gpu }} M</span> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column |
| | | prop="net" |
| | | label="网络" |
| | | width="150" |
| | | ></el-table-column> |
| | | </el-table> |
| | | </div> |
| | | |