修改更新主机身份逻辑.
This commit is contained in:
@@ -78,19 +78,17 @@
|
||||
@page-change="(page) => fetchTableData(page, pagination.pageSize)"
|
||||
@page-size-change="(size) => fetchTableData(pagination.current, size)"
|
||||
:bordered="false">
|
||||
<!-- 名称 -->
|
||||
<template #name="{ record }">
|
||||
<span class="span-blue">{{ record.name }}</span>
|
||||
</template>
|
||||
<!-- 编码 -->
|
||||
<template #code="{ record }">
|
||||
<a-tag>{{ record.code }}</a-tag>
|
||||
</template>
|
||||
<!-- 地址 -->
|
||||
<template #address="{ record }">
|
||||
<span class="host-address" title="点击复制" @click="copy(record.address)">
|
||||
{{ record.address }}
|
||||
</span>
|
||||
<a-tooltip content="点击复制">
|
||||
<span class="host-address" @click="copy(record.address)">
|
||||
<icon-copy class="mr4" />{{ record.address }}
|
||||
</span>
|
||||
</a-tooltip>
|
||||
</template>
|
||||
<!-- 标签 -->
|
||||
<template #tag="{ record }">
|
||||
|
||||
Reference in New Issue
Block a user