【sgFileLink】自定义组件:基于el-link、el-icon标签构建文件超链接组件,支持垃圾桶删除、点击预览视频/音频/图片/PDF格式文件

server/2024/12/16 3:30:52/

sgFileLink源代码

<template><div :class="$options.name"><el-link @click.stop="clickFile(data)"><img :src="getSrc(data)" /><span>{{ getFileNameAndSize(data) }}</span></el-link><el-linkclass="remove-btn"type="danger"v-if="clearable_"icon="el-icon-delete":title="`移除${data.name}`":underline="false"@click.stop="remove(data)"/><el-imageref="image"style="display: none"src="":initial-index="initialIndex":preview-src-list="previewSrcList"/><sgVideoDialog :data="data_sgVideoDialog" v-model="show_sgVideoDialog" /><sgAudioDialog :data="data_sgAudioDialog" v-model="show_sgAudioDialog" /></div>
</template>
<script>
import sgVideoDialog from "@/vue/components/admin/sgVideoDialog";
import sgAudioDialog from "@/vue/components/admin/sgAudioDialog";
import $com from "@/js/com";
export default {name: "sgFileLink",components: { sgVideoDialog, sgAudioDialog },data() {return {data_sgVideoDialog: {},show_sgVideoDialog: false,data_sgAudioDialog: {},show_sgAudioDialog: false,previewSrcList: null,initialIndex: 0,clearable_: null,};},props: ["data", "clearable", "files"],computed: {},watch: {clearable: {handler(newValue, oldValue) {this.clearable_ = newValue === "" || newValue;},deep: true, //深度监听immediate: true, //立即执行},},created() {},mounted() {},destroyed() {},methods: {remove(data) {this.$emit(`remove`, data);},clickFile(d) {$com.clickFile(d, this, { files: this.files });},getSrc(d) {typeof d === `string` && (d = JSON.parse(d));let fileName = d.name;let suffix = fileName.split(".").slice(-1)[0];return $com.getFlieThumbSrc({ suffix });},getFileNameAndSize(d) {return $com.getFileNameAndSize(d);},},
};
</script>
<style lang="scss" scoped>
.sgFileLink {>>> .el-link {transition: 0.2s;line-height: normal;img {width: 16px;height: 16px;object-position: center;object-fit: contain;transform: translateY(2px);margin-right: 5px;}span {word-wrap: break-word;word-break: break-all;white-space: break-spaces;}}.remove-btn {transition: 0.382s;opacity: 0;pointer-events: none;transform: translateX(-100%);}&:hover {.remove-btn {opacity: 1;pointer-events: auto;transform: translateX(0%);}}
}
</style>

应用

<sgFileLink :data="{ ...scope.row, clearable: true }" @remove="remove(scope.row, scope.$index)" />


http://www.ppmy.cn/server/150518.html

相关文章

革新3D重建:谷歌推出SimVS框架,让AI更智能地理解动态世界

随着增强现实(AR)和虚拟现实(VR)技术的迅速发展,对高效、精准的3D场景重建需求日益增长。传统的3D重建方法在处理真实世界中的复杂变化时遇到诸多挑战,如光照条件的变化、物体移动以及环境本身的动态性。为了解决这些问题,谷歌推出了一个名为SimVS的创新AI 3D重建框架,…

HUGGINFACE NLP-dataset

1 What if my dataset isn’t on the Hub? 1.1 Working with local and remote datasets 1.1.1 supports several common data formats, CSV & TSV csv load_dataset("csv", data_files"my_file.csv") Text files text load_dataset("text&quo…

Vue Web开发(七)

1. echarts介绍 echarts官方文档 首先我们先完成每个页面的路由&#xff0c;之前已经有home页面和user页面&#xff0c;缺少mail页面和其它选项下的page1和page2页面。在view文件夹下新建mail文件夹&#xff0c;新建index.vue&#xff0c;填充user页面的内容即可。在view下新建…

bain.js(十二):RNN神经网络实战教程 - 音乐乐谱生成 -人人都是作曲家~

系列文章&#xff1a; &#xff08;一&#xff09;&#xff1a;可以在浏览器运行的、默认GPU加速的神经网络库概要介绍&#xff08;二&#xff09;&#xff1a;项目集成方式详解&#xff08;三&#xff09;&#xff1a;手把手教你配置和训练神经网络&#xff08;四&#xff09…

YOLOv11融合[CVPR2024]Starnet中的star block特征提取模块

YOLOv11v10v8使用教程&#xff1a; YOLOv11入门到入土使用教程 YOLOv11改进汇总贴&#xff1a;YOLOv11及自研模型更新汇总 《Rewrite the Stars》 一、 模块介绍 论文链接&#xff1a;https://arxiv.org/abs/2403.19967 代码链接&#xff1a;https://github.com/ma-xu/Rewri…

(七)机器学习 - 散点图

散点图&#xff08;Scatter Plot&#xff09;是一种用于展示两个变量之间关系的图表类型。它通过在二维平面上绘制点来表示数据的分布情况&#xff0c;每个点的横坐标&#xff08;x轴&#xff09;和纵坐标&#xff08;y轴&#xff09;分别对应数据集中的两个变量的值。散点图的…

ansible自动化运维(一)简介及清单,模块

相关文章ansible自动化运维&#xff08;二&#xff09;playbook模式详解-CSDN博客ansible自动化运维&#xff08;三&#xff09;jinja2模板&&roles角色管理-CSDN博客ansible自动化运维&#xff08;四&#xff09;运维实战-CSDN博客 ansible自动化运维工具 1.什么是自…

汽车保养系统+ssm

摘 要 由于APP软件在开发以及运营上面所需成本较高&#xff0c;而用户手机需要安装各种APP软件&#xff0c;因此占用用户过多的手机存储空间&#xff0c;导致用户手机运行缓慢&#xff0c;体验度比较差&#xff0c;进而导致用户会卸载非必要的APP&#xff0c;倒逼管理者必须改…