添加 json view.

This commit is contained in:
lijiahang
2023-10-26 14:57:09 +08:00
parent 03e18cc0e2
commit 6c4e588f92
11 changed files with 110 additions and 21 deletions

View File

@@ -21,7 +21,7 @@
<template #username="{ record }">
<a-tooltip content="点击复制">
<span class="pointer span-blue" @click="copy(record.username)">
<icon-copy class="mr4" />{{ record.username }}
<icon-copy /> {{ record.username }}
</span>
</a-tooltip>
</template>
@@ -226,6 +226,6 @@
</script>
<style lang="less" scoped>
<style lang="less" scoped>
</style>

View File

@@ -68,7 +68,7 @@
<template #username="{ record }">
<a-tooltip content="点击复制">
<span class="pointer span-blue" @click="copy(record.username)">
<icon-copy class="mr4" />{{ record.username }}
<icon-copy /> {{ record.username }}
</span>
</a-tooltip>
</template>

View File

@@ -25,7 +25,7 @@
<template #address="{ record }">
<a-tooltip content="点击复制">
<span class="host-address" @click="copy(record.address)">
<icon-copy class="mr4" />{{ record.address }}
<icon-copy /> {{ record.address }}
</span>
</a-tooltip>
</template>

View File

@@ -94,7 +94,7 @@
<template #address="{ record }">
<a-tooltip content="点击复制">
<span class="host-address" @click="copy(record.address)">
<icon-copy class="mr4" />{{ record.address }}
<icon-copy /> {{ record.address }}
</span>
</a-tooltip>
</template>