SFTP 操作日志.

This commit is contained in:
lijiahang
2024-03-05 18:07:26 +08:00
parent a75ead9a58
commit 554c62abf7
22 changed files with 650 additions and 108 deletions

View File

@@ -32,16 +32,15 @@
<icon-copy class="copy-left" @click="copy(record.originLogInfo, '已复制')" />
<span v-html="replaceHtmlTag(record.logInfo)" />
</template>
<!-- 操作地址 -->
<!-- 留痕地址 -->
<template #address="{ record }">
<span class="operator-location" :title="record.location">
{{ record.location }}
</span>
<br>
<span class="copy-left" title="复制" @click="copy(record.address)">
<icon-copy />
</span>
<span class="operator-address" :title="record.address">
<span class="operator-address text-copy"
:title="record.address"
@click="copy(record.address)">
{{ record.address }}
</span>
</template>

View File

@@ -79,16 +79,15 @@
<icon-copy class="copy-left" @click="copy(record.originLogInfo, '已复制')" />
<span v-html="replaceHtmlTag(record.logInfo)" />
</template>
<!-- 操作地址 -->
<!-- 留痕地址 -->
<template #address="{ record }">
<span class="operator-location" :title="record.location">
{{ record.location }}
</span>
<br>
<span class="copy-left" title="复制" @click="copy(record.address)">
<icon-copy />
</span>
<span class="operator-address" :title="record.address">
<span class="operator-address text-copy"
:title="record.address"
@click="copy(record.address)">
{{ record.address }}
</span>
</template>

View File

@@ -33,7 +33,7 @@ const columns = [
ellipsis: true,
tooltip: true,
}, {
title: '操作地址',
title: '留痕地址',
dataIndex: 'address',
slotName: 'address',
width: 156,