0.3.3 • Published 6 years ago

alienupload v0.3.3

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

v-alien-upload

具体介绍见api文档

vue.js上传组件,支持自动压缩、可预、删除、多选、显示上传进度、图片展示等功能

###示例代码

<template>
  <div id="app">
    <alienUpload width="50%"@delete-show-img="deleteShowImg" @image-list-change="imageListChange" @count-exceed-limit="countExceedLimit" @image-upload-error="imageUploadError" :showImageList="showImageList" @upload-img="uploadImg" :compressQuality="compressQuality" showProgress :ProgressPercent="ProgressPercent" ref="uploadImg"></alienUpload>
  </div>
</template>

<script>
export default {
  name: 'app',
  data () {
    return {
      compressQuality:.6,
      ProgressPercent:0,
      showImageList:[{name:'示例1',src:'http://otdc3q7z7.bkt.clouddn.com/146197530969E4FA88FFC41C3BA13A86.png'},{name:'示例2',src:'http://otdc3q7z7.bkt.clouddn.com/146197530969E4FA88FFC41C3BA13A86.png'}]
    }
  },
  mounted(){
  },
  methods:{
      emptyImg(){
          this.$refs.uploadImg.clearUp()
      },
      uploadImg(fileList){
        let len = fileList.length,
          that = this,
          onrProgress = (1/len).toFixed(2)*100;
        fileList.map(function(item,index){
          /*goodsManageApi.picUplaod(item).then(response=>{
           index === len-1 ? that.ProgressPercent1=100 :that.ProgressPercent1 += onrProgress;
           that.formItem.productPic = response.data.message
          })*/
          //模仿上传的回调
          let indexTemp = index;
          let timer = setTimeout(function(){
            that.ProgressPercent= indexTemp === len-1 ? 100 :that.ProgressPercent += onrProgress;
            if(that.ProgressPercent === 100 ){
              console.log('上传完成')
              //清空待上传数组
              setTimeout(() => {
                  that.$refs.uploadImg.clearUp()
              },2000)
            }
            clearTimeout(timer)
          },400 * (indexTemp+1))

        })
      },
      imageUploadError(code){
          console.log('图片上传出错,出错信息'+code);
      },
      countExceedLimit(type){
          if(type === 'more'){
              console.log('图片上传数量超出限制数!')
          }else if(type === 'less'){
              console.log('图片上传数量少于限制数!')
          }
      },
      imageListChange(file){
          console.log(file)
      },
      deleteShowImg(item,index){
          console.log(item)
          console.log(index)
        this.showImageList.splice(index,1);
      }

  }
}
</script>

<style>


</style>

安装(npm)

npm install alienupload --save

使用

import ValienUpload from 'alienupload'
Vue.use(ValienUpload)
0.3.3

6 years ago

0.3.2

6 years ago

0.3.1

6 years ago

0.3.0

6 years ago

0.2.9

6 years ago

0.2.8

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.9

6 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago