el-upload单张图片上传回显替换

11 篇文章 0 订阅

在这里插入图片描述
在这里插入图片描述

<el-form :model="bulletin" ref="bulletin" label-width="90px">
   <el-form-item label="头像:">
     <el-upload class="upload-demo upload"
         drag
         :show-file-list="false"
         :action="uploadFilePath"
         :data="activeCoverPhoto"
         :before-upload="beforeUpload"
         :on-success="activeCoverPhotoUploadSuccess">
       <i v-if="!bulletin.cover" class="el-icon-upload"></i>
       <div v-if="!bulletin.cover" class="el-upload__text">仅支持JPG/PNG,小于2M</div>
       <img :src="getImgUrl(bulletin.cover)" alt="" style="width:100%;height:100%" v-if="bulletin.cover">
     </el-upload>
   </el-form-item>
 </el-form>
 	 // 上传图片携带数据
      activeCoverPhoto: {
        type: 40,
        description: '杂志封面图'
      },
      // 图片上传成功返回图片路径
      activeCoverPhotoImgUrl: '',
import { mapGetters } from 'vuex'
import { getImgUrl } from '@/utils'
computed: {
   ...mapGetters([
     'uploadFilePath'
   ])
 },
//封面开始
    getImgUrl (uuid) {
      return getImgUrl(uuid)
    },
    //图片
    beforeUpload (file) {
      const isType = file.type === 'image/jpeg' || file.type === 'image/png'
      const isLt2M = file.size / 1024 / 1024 < 2
      if (!isType) {
        this.$message.error('图片只能是 JPG/PNG 格式')
      }
      if (!isLt2M) {
        this.$message.error('图片大小不能超过 2MB')
      }
      return isType && isLt2M
    },
    activeCoverPhotoUploadSuccess (response, file, fileList) {
      this.bulletin.cover = response.data
      this.activeCoverPhotoImgUrl = URL.createObjectURL(file.raw)
    },
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值