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

sgFileLink源代码

html 复制代码
<template>
  <div :class="$options.name">
    <el-link @click.stop="clickFile(data)">
      <img :src="getSrc(data)" /><span>{{ getBannerFileName(data) }}</span></el-link
    >
    <el-link
      class="remove-btn"
      v-if="clearable_"
      icon="el-icon-delete"
      :underline="false"
      @click.stop="remove(data)"
    />

    <el-image ref="image" style="display: none" src="" :preview-src-list="[previewSrc]" />
    <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,

      previewSrc: null,
      clearable_: null,
    };
  },
  props: ["data", "clearable"],
  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);
    },
    getSrc(d) {
      typeof d === `string` && (d = JSON.parse(d));
      let fileName = d.name;
      let suffix = fileName.split(".").slice(-1)[0];
      return $com.getFlieThumbSrc({ suffix });
    },
    getBannerFileName(d) {
      return $com.getBannerFileName(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);
    }
    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>

应用

html 复制代码
<sgFileLink :data="{ ...scope.row, clearable: true }" @remove="remove(scope.row, scope.$index)" />
相关推荐
一城烟雨_1 小时前
vue3 实现将html内容导出为图片、pdf和word
前端·javascript·vue.js·pdf
群联云防护小杜2 小时前
云服务器主动防御策略与自动化防护(下)
运维·服务器·分布式·安全·自动化·音视频
一纸忘忧3 小时前
成立一周年!开源的本土化中文文档知识库
前端·javascript·github
软件技术NINI4 小时前
html css js网页制作成品——HTML+CSS甜品店网页设计(4页)附源码
javascript·css·html
涵信4 小时前
第十一节:性能优化高频题-响应式数据深度监听问题
javascript·vue.js·性能优化
codingandsleeping5 小时前
Express入门
javascript·后端·node.js
Vaclee5 小时前
JavaScript-基础语法
开发语言·javascript·ecmascript
拉不动的猪5 小时前
前端常见数组分析
前端·javascript·面试
一个专注写代码的程序媛7 小时前
vue组件间通信
前端·javascript·vue.js
一笑code7 小时前
美团社招一面
前端·javascript·vue.js