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

@@ -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>