ANT-DESIGN-VUE-JEECG JUPLOAD上传视频回显

开发的时候选用了ant-design-vue-jeecg 这么一个组合,客户提出想要在编辑页面预览视频,简单记录一下实现方法。

我这边是直接封装了一个JVideoUpload组件,代码如下

<template>
  <div class="img">
    <a-upload
      name="file"
      listType="picture-card"
      :multiple="isMultiple"
      :action="uploadAction"
      :headers="headers"
      :data="{biz:bizPath}"
      :fileList="fileList"
      :beforeUpload="beforeUpload"
      :disabled="disabled"
      :isMultiple="isMultiple"

      @change="handleChange"
      @preview="handlePreview"
      :class="[!isMultiple?'imgupload':'', (!isMultiple && picUrl)?'image-upload-single-over':'' ]">
      <div>
        <!--<img v-if="!isMultiple && picUrl" :src="getAvatarView()" style="width:100%;height:100%"/>-->
        <div class="iconp">
          <a-icon :type="uploadLoading ? 'loading' : 'plus'" />
          <div class="ant-upload-text">{{ text }}</div>
        </div>
      </div>
      <a-modal :visible="previewVisible" :footer="null" @cancel="handleCancel()">
        <video alt="example" style="width: 100%" :src="previewImage" controls/>
      </a-modal>
    </a-upload>
  </div>
</template>

<script>
import Vue from 'vue'
import { ACCESS_TOKEN } from "@/store/mutation-types"
import { getFileAccessHttpUrl } from '@/api/manage'

const uidGenerator=()=>{
  return '-'+parseInt(Math.random()*10000+1,10);
}
const getFileName=(path)=>{
  if(path.lastIndexOf("\\")>=0){
    let reg=new RegExp("\\\\","g");
    path = path.replace(reg,"/");
  }
  return path.substring(path.lastIndexOf("/")+1);
}
export default {
  name: 'JImageUpload',
  data(){
    return {
      uploadAction:window._CONFIG['domianURL']+"/sys/common/upload",
      uploadLoading:false,
      picUrl: false,
      isPic: true,
      headers:{},
      fileList: [],
      previewImage:"",
      previewVisible: false,
    }
  },
  props:{
    text:{
      type:String,
      required:false,
      default:"上传"
    },
    /*这个属性用于控制文件上传的业务路径*/
    bizPath:{
      type:String,
      required:false,
      default:"temp"
    },
    value:{
      type:[String,Array],
      required:false
    },
    disabled:{
      type:Boolean,
      required:false,
      default: false
    },
    isMultiple:{
      type:Boolean,
      required:false,
      default: false
    },
    //update-begin-author:wangshuai date:20201021 for:LOWCOD-969 新增number属性,用于判断上传数量
    number:{
      type:Number,
      required:false,
      default:0
    }
    //update-end-author:wangshuai date:20201021 for:LOWCOD-969 新增number属性,用于判断上传数量
  },
  watch:{
    value: {
      handler(val,oldValue) {
        if (val instanceof Array) {
          this.initFileList(val.join(','))
        } else {
          this.initFileList(val)
        }
        if(!val || val.length==0){
          this.picUrl = false;
        }
      },
      //立刻执行handler
      immediate: true
    }
  },
  created(){
    const token = Vue.ls.get(ACCESS_TOKEN);
    this.headers = {"X-Access-Token":token}
  },
  methods:{
    initFileList(paths){
      if(!paths || paths.length==0){
        this.fileList = [];
        return;
      }
      this.picUrl = true;
      let fileList = [];
      let arr = paths.split(",")
      for(var a=0;a<arr.length;a++){
        let url = getFileAccessHttpUrl(arr[a]);
        fileList.push({
          uid: uidGenerator(),
          name: getFileName(arr[a]),
          status: 'done',
          url: url,
          response:{
            status:"history",
            message:arr[a]
          }
        })
      }
      this.fileList = fileList
    },
    beforeUpload: function (file) {
      this.isPic= true
      var fileType = file.type;
      if (fileType.indexOf('video') < 0) {
        this.isPic= false,
          this.$message.warning('请上传视频');
        return false;
      }
    },
    handleChange(info) {
      this.picUrl = false;
      let fileList = info.fileList
      //update-begin-author:wangshuai date:20201022 for:LOWCOD-969 判断number是否大于0和是否多选,返回选定的元素。
      if(this.number>0 && this.isMultiple){
        fileList = fileList.slice(-this.number);
      }
      //update-end-author:wangshuai date:20201022 for:LOWCOD-969 判断number是否大于0和是否多选,返回选定的元素。
      if(info.file.status==='done'){
        if(info.file.response.success){
          this.picUrl = true;
          fileList = fileList.map((file) => {
            if (file.response) {
              file.url = file.response.message;
            }
            return file;
          });
        }
        //this.$message.success(`${info.file.name} 上传成功!`);
      }else if (info.file.status === 'error') {
        this.$message.error(`${info.file.name} 上传失败.`);
      }else if(info.file.status === 'removed'){
        this.handleDelete(info.file)
      }
      if(  this.isPic)
        this.fileList = fileList
      if(info.file.status==='done' || info.file.status === 'removed'){
        this.handlePathChange()
      }
    },
    // 预览
    handlePreview (file) {
      console.log('file****************',file)
      console.log('url*********',file.url)
      this.previewImage = file.url || file.thumbUrl
      this.previewVisible = true
    },
    getAvatarView(){
      if(this.fileList.length>0){
        let url = this.fileList[0].url
        return getFileAccessHttpUrl(url)
      }
    },
    handlePathChange(){
      let uploadFiles = this.fileList
      let path = ''
      if(!uploadFiles || uploadFiles.length==0){
        path = ''
      }
      let arr = [];
      if(!this.isMultiple && uploadFiles.length>0){
        arr.push(uploadFiles[uploadFiles.length-1].response.message)
      }else{
        for(let a=0;a<uploadFiles.length;a++){
          // update-begin-author:taoyan date:20200819 for:【开源问题z】上传图片组件 LOWCOD-783
          if(uploadFiles[a].status === 'done' ) {
            arr.push(uploadFiles[a].response.message)
          }else{
            return;
          }
          // update-end-author:taoyan date:20200819 for:【开源问题z】上传图片组件 LOWCOD-783
        }
      }
      if(arr.length>0){
        path = arr.join(",")
      }
      this.$emit('change', path);
    },
    handleDelete(file){
      //如有需要新增 删除逻辑
      console.log(file)
    },
    handleCancel() {
      this.previewVisible = false
      let myVideo = document.getElementsByTagName('video')
      let arr = Array.from(myVideo)
      arr.forEach(item => {//关闭时暂停播放
        item.pause()
      })
    },
    close () {

    },
  },
  model: {
    prop: 'value',
    event: 'change'
  }
}
</script>


/deep/ .image-upload-single-over .ant-upload-select{display: none}
</style>

该文件放在跟JUpload同一级目录下

 然后全局引用该文件

src/comonents/jeecg/index.js文件中添加如下代码

import JVideoUpload from './JVideoUpload.vue'
Vue.component('JVideoUpload', JVideoUpload)

以上步骤完成后就可以直接使用了

<a-col :span="24">
 <a-form-model-item label="上传视频" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="files">
  <j-video-upload v-model="model.files" file-type="video"></j-video-upload>
 </a-form-model-item>
</a-col>

实现效果如下:

以上就是全部内容啦

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值