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

update table

This commit is contained in:
handsomewu 2024-11-13 14:28:02 +08:00
parent f061dc9071
commit 5617d4bdab

View File

@ -1,32 +1,18 @@
<template> <template>
<div class="dashboard-editor-container"> <div class="dashboard-editor-container">
<el-table <el-table :data="tableData" border style="width: 100%">
:data="tableData" <el-table-column prop="date" label="所属集群" width="180" />
border <el-table-column prop="name" label="Node 名称" width="180" />
style="width: 100%" <el-table-column prop="address" label="Node IP" />
> <el-table-column prop="role" label="Role" />
<el-table-column <el-table-column prop="status" label="状态">
prop="date" <template slot-scope="scope">
label="所属集群" <el-tag
width="180" :type="scope.row.status === 'Ready' ? 'success' : 'danger'"
/> disable-transitions
<el-table-column >{{ scope.row.status }}</el-tag>
prop="name" </template>
label="Node 名称" </el-table-column>
width="180"
/>
<el-table-column
prop="address"
label="Node IP"
/>
<el-table-column
prop="role"
label="Role"
/>
<el-table-column
prop="status"
label="状态"
/>
</el-table> </el-table>
</div> </div>
</template> </template>
@ -44,7 +30,7 @@ export default {
}, },
methods: { methods: {
fetchTableData() { fetchTableData() {
fetch('http://localhost:5090/dashboard/nodes', { fetch('http://localhost:5000/dashboard/nodes', {
method: 'Get', method: 'Get',
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
@ -52,10 +38,33 @@ export default {
}) })
.then(response => response.json()) .then(response => response.json())
.then(data => { .then(data => {
console.log('looking handsome', data) // json
const parseClusterData = (clusterString, clusterName) => {
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 = data.map(node => ({ this.tableData = combinedData.map(node => ({
date: node.cluster, // cluster date: node.cluster, // cluster
name: node.name, // name name: node.name, // name
address: node.ip, // ip IP address: node.ip, // ip IP