feat:上传界面按钮列文字提示

This commit is contained in:
zhongzm
2025-04-11 11:53:24 +08:00
parent c37552661c
commit d0b5ee7e75
2 changed files with 15 additions and 0 deletions

View File

@@ -464,6 +464,8 @@ function fnSyncFileToFTP(row: Record<string, any>) {
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'fileName'">
<a-space :size="8" align="center">
<a-tooltip>
<template #title>{{ t('common.CloudServerText') }}</template>
<a-button
type="link"
:loading="downLoading"
@@ -472,6 +474,9 @@ function fnSyncFileToFTP(row: Record<string, any>) {
>
<template #icon><CloudServerOutlined /></template>
</a-button>
</a-tooltip>
<a-tooltip>
<template #title>{{ t('common.downloadText') }}</template>
<a-button
type="link"
:loading="downLoading"
@@ -480,6 +485,9 @@ function fnSyncFileToFTP(row: Record<string, any>) {
>
<template #icon><DownloadOutlined /></template>
</a-button>
</a-tooltip>
<a-tooltip>
<template #title>{{ t('common.deleteText') }}</template>
<a-button
type="link"
:loading="delLoading"
@@ -488,6 +496,7 @@ function fnSyncFileToFTP(row: Record<string, any>) {
>
<template #icon><DeleteOutlined /></template>
</a-button>
</a-tooltip>
</a-space>
</template>
</template>

View File

@@ -329,6 +329,8 @@ onMounted(() => {
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'fileName'">
<a-space :size="8" align="center">
<a-tooltip>
<template #title>{{ t('common.downloadText') }}</template>
<a-button
type="link"
:loading="downLoading"
@@ -337,6 +339,9 @@ onMounted(() => {
>
<template #icon><DownloadOutlined /></template>
</a-button>
</a-tooltip>
<a-tooltip>
<template #title>{{ t('common.deleteText') }}</template>
<a-button
type="link"
:loading="delLoading"
@@ -345,6 +350,7 @@ onMounted(() => {
>
<template #icon><DeleteOutlined /></template>
</a-button>
</a-tooltip>
</a-space>
</template>
</template>