This commit is contained in:
bwcx_jzy 2023-02-20 15:06:32 +08:00
parent cdaa9bc91a
commit 554a2d96ab
No known key found for this signature in database
GPG Key ID: 5E48E9372088B9E5

View File

@ -34,10 +34,12 @@
<div>节点名称{{ item.name }}</div>
<div>节点地址{{ item.jpomUrl }}</div>
</template>
<span @click="showMachineInfo(item)" style="cursor: pointer">
{{ item.name }}
</span>
</a-tooltip>
</a-col>
<a-col :span="7" style="text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap">
<a-col :span="7" style="text-align: right" class="text-overflow-hidden">
<a-tooltip :title="`当前状态:${statusMap[item.status]} ${item.statusMsg ? '状态消息:' + item.statusMsg : ''} `">
<a-tag :color="item.status === 1 ? 'green' : 'pink'" style="margin-right: 0px"> {{ statusMap[item.status] }}</a-tag>
</a-tooltip>
@ -49,7 +51,9 @@
<a-row class="item-info">
<a-col :span="6" class="title text-overflow-hidden">系统名称:</a-col>
<a-col :span="18" class="content text-overflow-hidden">
<span style="color: #40a9ff; cursor: pointer" @click="showMachineInfo(item)">
{{ item.osName }}
</span>
</a-col>
</a-row>
</a-tooltip>
@ -73,7 +77,7 @@
<a-row class="item-info">
<a-col :span="6" class="title text-overflow-hidden">插件版本:</a-col>
<a-col :span="18" class="content text-overflow-hidden">
<span v-if="item.jpomVersion" type="link" size="small" @click="showMachineUpgrade(item)" style="color: #40a9ff">
<span v-if="item.jpomVersion" type="link" size="small" @click="showMachineUpgrade(item)" style="color: #40a9ff; cursor: pointer">
{{ item.jpomVersion || "-" }}
</span>
</a-col>