feige
2024-02-02 bd40473c9c634005bc7e62e7fc901bcd8b598fa0
ruoyi-ui/src/views/bignote/familyeventInfo.vue
@@ -48,6 +48,7 @@
        multiple
        :http-request="requestUpload"
        :file-list="fileList"
      :on-change="handleChange"
        :disabled="!btn"
        :class="{ hide: !btn }"
@@ -177,6 +178,7 @@
      fileList:[
      ],
      uploadFileList:[],
      fileListOther:[
      ],
@@ -397,15 +399,27 @@
      this.isShow=false
    },
    requestUpload(params)
//自定义上传方法
    handleChange(file, fileList) {
       //定义一个全局数组uploadFileList来做存储
      this.uploadFileList.push(file.raw);
      console.log("=========5555=========")
      //console.log(file)
      console.log(this.uploadFileList)
    },
    async requestUpload(params)
    {
     // alert(124)
      var file = params.file;
      var formData = new FormData();
      formData.append('uploadFile', file);
      let _this = this
     //alert(34)
      this.uploading1 = true;
      uploadPic(formData).then(response => {
      await uploadPic(formData).then(response => {
        let pth = response.data.originalFilename.substr(response.data.originalFilename.length-4, response.data.originalFilename.length)
        _this.uploading1= false;
        console.log(_this.fot.includes(pth))