77 lines
1.7 KiB
Vue
77 lines
1.7 KiB
Vue
<template>
|
|
<div class="document-list">
|
|
<el-card
|
|
v-for="(doc, index) in documents"
|
|
:key="index"
|
|
class="document-card"
|
|
>
|
|
<div class="document-info">
|
|
<h3>{{ doc.title }}</h3>
|
|
<div class="document-content">
|
|
<span v-if="doc.size" class="document-meta"
|
|
>大小: {{ formatFileSize(doc.size) }}
|
|
</span>
|
|
<span v-if="doc.filename" class="document-meta"
|
|
>格式:
|
|
{{ formatFileExtension(getFileExtension(doc.filename)) }}</span
|
|
>
|
|
<el-button
|
|
class="download-button"
|
|
type="primary"
|
|
@click="handleDownload(doc.title, doc.url)"
|
|
>
|
|
下载
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
defineProps({
|
|
documents: {
|
|
type: Array as () => Array<ProductDocumentView>,
|
|
default: () => [],
|
|
},
|
|
});
|
|
|
|
const handleDownload = async (fileName: string, fileUrl: string) => {
|
|
const response = await fetch(fileUrl);
|
|
const blob = await response.blob();
|
|
const url = window.URL.createObjectURL(blob);
|
|
|
|
const link = document.createElement('a');
|
|
link.href = url;
|
|
link.download = fileName;
|
|
document.body.appendChild(link);
|
|
link.click();
|
|
document.body.removeChild(link);
|
|
window.URL.revokeObjectURL(url);
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.document-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
width: 100%;
|
|
}
|
|
|
|
.document-meta {
|
|
font-size: 0.8rem;
|
|
color: var(--el-text-color-secondary);
|
|
}
|
|
|
|
.download-button {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.document-content {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
</style>
|