element-ui的upload 上传组件 照片墙当超过限定图片后隐藏上传按钮

隐藏上传组件。比如我想限制上传5张 ,上传到第五张后,上传组件隐藏,

<el-upload
  accept=".png, .jpeg, .jpg, .gif"
  :limit="5"
     :action="`${baseApi}/systemController/v1.0/uploadImg`"
     list-type="picture-card"
     :file-list="fileList"
     :before-upload="uploadEdit"
     :on-success="handlePictureCardPreview"
     :on-remove="handleRemove"
     :on-change="handleEditChange"
     :class="{hide:hideUploadEdit}"
   >
 <i class="el-icon-plus"></i>
</el-upload>

然后在data
export default {
  name: '',
  data () {
    return {
      hideUpload: false,
    }
    }
    }
 methods: {
   handleEditChange (file, fileList) {
      this.hideUploadEdit = fileList.length >= 5
    },
    handleRemove (file, fileList) {
      if (fileList.length === 0) {
        this.fileList = []
      } else {
        let dl = this.fileList.indexOf(file)
        this.fileList.splice(dl, 1)
      }
      this.hideUploadEdit = fileList.length >= 5
    },
    handlePictureCardPreview (file) {
      this.curAskedDetail.asked_imgs = file.data
      this.fileList.push({ url: file.data })
    },
    uploadEdit (file) {
      return this.xianZhi(file)
    },
    uploadAdd (file) {
      return this.xianZhi(file)
    },
    xianZhi (file) {
      const isLimit = file.size / 1024 / 1024 <= 5
      if (
        ['image/jpeg', 'image/jpg', 'image/png', 'image/gif'].indexOf(
          file.type
        ) === -1
      ) {
        this.$message.error('上传图片只能是 jpg/jpeg/gif/png格式!')
        return false
      }
      if (!isLimit) {
        this.$message.error('上传图片大小不能超过" + 5 + "MB!')
        return false
      }
    }
}

<style>
.hide .el-upload--picture-card {
  display: none;
}
</style>


注意,必须去掉scoped,不然不生效

  • 2
    点赞
  • 10
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
1. 首先,在项目中安装element-ui和axios: ``` npm install element-ui axios --save ``` 2. 在main.js中引入element-ui和axios: ``` import Vue from 'vue' import ElementUI from 'element-ui' import 'element-ui/lib/theme-chalk/index.css' import axios from 'axios' Vue.use(ElementUI) Vue.prototype.$axios = axios ``` 3. 在组件中使用上传组件: ``` <template> <div> <el-upload class="avatar-uploader" action="/api/upload" :show-file-list="false" :on-success="handleSuccess" :before-upload="beforeUpload" > <img v-if="imageUrl" :src="imageUrl" class="avatar"> <i v-else class="el-icon-plus avatar-uploader-icon"></i> </el-upload> </div> </template> ``` 4. 在组件中定义上传前和上传成功的方法: ``` <script> export default { data() { return { imageUrl: '' } }, methods: { beforeUpload(file) { const isJPG = file.type === 'image/jpeg' const isPNG = file.type === 'image/png' if (!isJPG && !isPNG) { this.$message.error('只能上传jpg或png格式的图片') return false } const isLt2M = file.size / 1024 / 1024 < 2 if (!isLt2M) { this.$message.error('上传图片大小不能超过2MB') return false } return true }, handleSuccess(response) { this.imageUrl = response.data.url } } } </script> ``` 5. 在服务器端,需要接收上传图片,并将其保存到指定路径: ``` const express = require('express') const multer = require('multer') const path = require('path') const app = express() const storage = multer.diskStorage({ destination: function (req, file, cb) { cb(null, path.join(__dirname, '/public/images')) }, filename: function (req, file, cb) { const extname = path.extname(file.originalname) cb(null, Date.now() + extname) } }) const upload = multer({ storage: storage }) app.post('/api/upload', upload.single('file'), (req, res) => { const url = `http://localhost:3000/images/${req.file.filename}` res.json({ code: 0, data: { url: url } }) }) app.listen(3000, () => { console.log('server is running at http://localhost:3000') }) ``` 以上就是在Vue中使用element-ui上传组件上传图片的方法。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值