1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-04-06 03:57:53 +08:00

change index

This commit is contained in:
handsomewu 2024-11-14 19:36:57 +08:00
parent f737f07900
commit 923ec75bc5

View File

@ -1,22 +1,16 @@
<template> <template>
<div class="dashboard-editor-container"> <div class="dashboard-editor-container">
me <el-image style="width: 100%; height: 100%" :src="require('@/assets/custom-theme/topology.png')" fit="fill" />
<el-image
style="width: 100%; height: 100%"
:src="require('@/assets/custom-theme/topology.png')"
fit="fill"
/>
<el-table :data="tableData" border style="width: 100%"> <el-table :data="tableData" border style="width: 100%">
<el-table-column prop="date" label="所属集群" width="180" /> <el-table-column prop="cluster" label="所属集群" width="150" />
<el-table-column prop="name" label="Node 名称" width="180" /> <el-table-column prop="name" label="Node 名称" width="150" />
<el-table-column prop="address" label="Node IP" /> <el-table-column prop="address" label="Node IP" />
<el-table-column prop="role" label="Role" /> <el-table-column prop="role" label="Role" />
<el-table-column prop="status" label="状态"> <el-table-column prop="uuid" label="算力统一标识" />
<el-table-column prop="status" label="状态" width="100">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag <el-tag :type="scope.row.status === 'Ready' ? 'success' : 'danger'" disable-transitions>{{ scope.row.status
:type="scope.row.status === 'Ready' ? 'success' : 'danger'" }}</el-tag>
disable-transitions
>{{ scope.row.status }}</el-tag>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -46,39 +40,30 @@ export default {
}) })
.then(response => response.json()) .then(response => response.json())
.then(data => { .then(data => {
// json // json
const parseClusterData = (clusterString, clusterName) => { console.log('looking handsome', data)
const rows = clusterString.trim().split('\n').slice(1)
return rows.map(row => {
const columns = row.trim().split(/\s{2,}/)
return {
cluster: clusterName,
name: columns[0],
status: columns[1],
role: columns[2],
age: columns[3],
version: columns[4],
ip: columns[5],
externalIp: columns[6] || '<none>',
osImage: columns[7],
kernelVersion: columns[8],
containerRuntime: columns[9]
}
})
}
const clusterAData = parseClusterData(data.cluster_a, 'Cluster A')
const clusterBData = parseClusterData(data.cluster_b, 'Cluster B')
const combinedData = [...clusterAData, ...clusterBData]
console.log('looking handsome', combinedData)
// //
this.tableData = combinedData.map(node => ({ const tableData = []
date: node.cluster, // cluster
name: node.name, // name // cluster_a cluster_b
address: node.ip, // ip IP Object.keys(data).forEach(cluster => {
role: node.role, // role data[cluster].forEach(node => {
status: node.status // status console.log(cluster)
})) //
tableData.push({
cluster: cluster, //
name: node.NAME, //
address: node.ADDRESS, // IP
role: node.ROLES, //
status: node.STATUS, //
uuid: node.UUID.replace('uuid=', '') // UUID "uuid="
})
})
})
//
this.tableData = tableData
}) })
.catch(error => console.error('Error fetching table data:', error)) .catch(error => console.error('Error fetching table data:', error))
} }