vue中-圖片上傳完整封裝復(fù)用組件

小魚兒心語(yǔ):真正點(diǎn)亮生命的不是明天的景色,而是美好的希望。我們懷著美好的希望,勇敢的走著,跌倒了再爬起,失敗了就再努力,永遠(yuǎn)相信明天會(huì)更好,永遠(yuǎn)相信不管自己再平凡,都會(huì)擁有屬于自己的幸福,這才是平凡人生中最燦爛的風(fēng)景。

話不多說,直接上代碼:

components中新建ImageUpload.vue文件:
<template>
  <div class="component-upload-image">
    <el-upload
      :action="uploadImgUrl"
      list-type="picture-card"
      :on-success="handleUploadSuccess"
      :before-upload="handleBeforeUpload"
      :limit="limit"
      :on-error="handleUploadError"
      :on-exceed="handleExceed"
      name="file"
      :on-remove="handleRemove"
      :show-file-list="true"
      :headers="headers"
      :file-list="fileList"
      :on-preview="handlePictureCardPreview"
      :class="{hide: this.fileList.length >= this.limit}"
    >
      <i class="el-icon-plus"></i>
    </el-upload>

    <!-- 上傳提示 -->
    <div class="el-upload__tip" slot="tip" v-if="showTip">
      請(qǐng)上傳
      <template v-if="fileSize"> 大小不超過 <b style="color: #f56c6c">{{ fileSize }}MB</b> </template>
      <template v-if="fileType"> 格式為 <b style="color: #f56c6c">{{ fileType.join("/") }}</b> </template>
      的文件
    </div>

    <el-dialog
      :visible.sync="dialogVisible"
      title="預(yù)覽"
      width="800"
      append-to-body
    >
      <img
        :src="dialogImageUrl"
        style="display: block; max-width: 100%; margin: 0 auto"
      />
    </el-dialog>
  </div>
</template>

<script>
// 根據(jù)具體情況獲取項(xiàng)目中的token值
import { getToken } from "@/utils/auth";

export default {
  props: {
    value: [String, Object, Array],
    valueimg: {
      type: String,
      default: '',
    },
    // 圖片數(shù)量限制
    limit: {
      type: Number,
      default: 5,
    },
    // 大小限制(MB)
    fileSize: {
       type: Number,
      default: 5,
    },
    // 文件類型, 例如['png', 'jpg', 'jpeg']
    fileType: {
      type: Array,
      default: () => ["png", "jpg", "jpeg"],
    },
    // 是否顯示提示
    isShowTip: {
      type: Boolean,
      default: true
    }
  },
  data() {
    return {
      dialogImageUrl: "",
      dialogVisible: false,
      hideUpload: false,
      baseUrl: process.env.VUE_APP_BASE_API,
      uploadImgUrl: process.env.VUE_APP_BASE_API + "/common/upload", // 上傳的圖片服務(wù)器地址
      headers: {
       token: "Bearer " + getToken(),
      },
      fileList: []
    };
  },
  watch: {
    value: {
      handler(val) {
        if (val) {
          this.fileList = []
          this.fileList = [
            {
              url:this.baseUrl + val
            }
          ]
          // 首先將值轉(zhuǎn)為數(shù)組
          // const list = Array.isArray(val) ? val : this.value.split(',');
          // // 然后將數(shù)組轉(zhuǎn)為對(duì)象數(shù)組
          // this.fileList = list.map(item => {
          //   if (typeof item === "string") {
          //     if (item.indexOf(this.baseUrl) === -1) {
          //         item = { name: this.baseUrl + item, url: this.baseUrl + item };
          //     } else {
          //         item = { name: item, url: item };
          //     }
          //   }
          //   return item;
          // });
        } else {
          this.fileList = [];
          return [];
        }
      },
      deep: true,
      immediate: true
    },
    valueimg(val){
      if(val=='1'){
        this.fileList = []
      }
    },
  },
  computed: {
    // 是否顯示提示
    showTip() {
      return this.isShowTip && (this.fileType || this.fileSize);
    },
  },
  methods: {
    // 刪除圖片
    handleRemove(file, fileList) {
      const findex = this.fileList.map(f => f.name).indexOf(file.name);
      this.fileList.splice(findex, 1);
      this.$emit("input", this.listToString(this.fileList));
    },
    // 上傳成功回調(diào)
    handleUploadSuccess(res) {
      console.log(125,res)
      this.fileList.push({ name: res.fileName, url: res.url });
      this.$emit("input", this.listToString(this.fileList));
      this.loading.close();
    },
    // 上傳前l(fā)oading加載
    handleBeforeUpload(file) {
      let isImg = false;
      if (this.fileType.length) {
        let fileExtension = "";
        if (file.name.lastIndexOf(".") > -1) {
          fileExtension = file.name.slice(file.name.lastIndexOf(".") + 1);
        }
        isImg = this.fileType.some(type => {
          if (file.type.indexOf(type) > -1) return true;
          if (fileExtension && fileExtension.indexOf(type) > -1) return true;
          return false;
        });
      } else {
        isImg = file.type.indexOf("image") > -1;
      }

      if (!isImg) {
        this.$message.error(
          `文件格式不正確, 請(qǐng)上傳${this.fileType.join("/")}圖片格式文件!`
        );
        return false;
      }
      if (this.fileSize) {
        const isLt = file.size / 1024 / 1024 < this.fileSize;
        if (!isLt) {
          this.$message.error(`上傳頭像圖片大小不能超過 ${this.fileSize} MB!`);
          return false;
        }
      }
      this.loading = this.$loading({
        lock: true,
        text: "上傳中",
        background: "rgba(0, 0, 0, 0.7)",
      });
    },
    // 文件個(gè)數(shù)超出
    handleExceed() {
      this.$message.error(`上傳文件數(shù)量不能超過 ${this.limit} 個(gè)!`);
    },
    // 上傳失敗
    handleUploadError() {
      this.$message({
        type: "error",
        message: "上傳失敗",
      });
      this.loading.close();
    },
    // 預(yù)覽
    handlePictureCardPreview(file) {
      this.dialogImageUrl = file.url;
      this.dialogVisible = true;
    },
    // 對(duì)象轉(zhuǎn)成指定字符串分隔
    listToString(list, separator) {
      let strs = "";
      separator = separator || ",";
      for (let i in list) {
        strs += list[i].url.replace(this.baseUrl, "") + separator;
      }
      return strs != '' ? strs.substr(0, strs.length - 1) : '';
    }
  }
};
</script>
<style scoped lang="scss">
// .el-upload--picture-card 控制加號(hào)部分
::v-deep.hide .el-upload--picture-card {
    display: none;
}
// 去掉動(dòng)畫效果
::v-deep .el-list-enter-active,
::v-deep .el-list-leave-active {
    transition: all 0s;
}

::v-deep .el-list-enter, .el-list-leave-active {
    opacity: 0;
    transform: translateY(0);
}
</style>
main.js文件中全局引用
// 圖片上傳組件
import ImageUpload from "@/components/ImageUpload"
// 全局組件掛載
Vue.component('ImageUpload', ImageUpload)
在userfilings.vue文件中引入該組件
<template>
   <div class="cardimg">
      <ImageUpload @input="tapapplicationForm" :value="valueimg"></ImageUpload>
   </div>
</template>
<script>
  export default {
      name: "Management",
      data() {
          return {
             valueimg1:'',
          }
      },
      methods:{
         /** 修改按鈕操作,將圖片回顯展示 */
          handleUpdate(row) {
            /** 為了使組件中的value值有效監(jiān)聽,需要在點(diǎn)擊修改按鈕時(shí)先將valueimg 值清空 */
            this.valueimg = ''
              getManagement(id).then(response => {
                  this.form = response.data;
                  /** 將返回的圖片地址賦值給 valueimg */
                  this.valueimg = this.form.applicationForm
                  this.open = true;
                  this.title = "修改考核信息管理";
              });
          }
      }
  }
</script>
一套完整的圖片上傳并回顯展示的效果就完成啦,大家有什么不懂的地方可以留言哦,我會(huì)及時(shí)為大家解答,同時(shí)有不足的地方也可以互相交流,我會(huì)及時(shí)改正,如果對(duì)你有幫助的話,可以關(guān)注我哦,我們互相學(xué)習(xí)進(jìn)步~~///(^v^)\~~
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時(shí)請(qǐng)結(jié)合常識(shí)與多方信息審慎甄別。
平臺(tái)聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點(diǎn),簡(jiǎn)書系信息發(fā)布平臺(tái),僅提供信息存儲(chǔ)服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容