• 具体调用vue预览的功能


    <template>
      <div>
        <van-nav-bar
          left-text="返回"
          right-text="提交"
          title="附件数据"
          left-arrow
          :fixed="true"
          :placeholder="true"
          @click-left="back"
          @click-right="fileSubmit"
        />
        <van-form>
          <van-pull-refresh v-model="isLoading" @refresh="onRefresh" success-text="刷新成功">
           <van-swipe-cell v-for="(item, index) in list" :key="index">
             <van-card
               :price="item.createdate"
               currency=""
               :desc="item.attachmenttitle + '.' + item.extend"
               title="附件名称:"
               class="goods-card"
               :thumb="path[index]"
               @click="clickView(path[index], index, item)"
             />
             <template #right>
               <van-button square text="删除" type="danger" class="delete-button" @click="delFile(item.id)" />
               <van-button square type="primary" text="下载" class="delete-button" @click="downloadFile(item)" />
             </template>
           </van-swipe-cell>
          </van-pull-refresh>
        </van-form>
    
       <!-- 文件上传 -->
       <van-form @submit="onSubmit" enctype="multipart/form-data">
         <van-uploader
           style="float: left;margin-left: 14px;margin-top: 15px;"
           v-model="fileList"
           accept="file"
          >
           <van-button size="small" icon="plus" type="primary">上传文件</van-button>
         </van-uploader>
       </van-form>
       <van-overlay :show="show" @click="show = false">
         <van-loading size="24px" color="#1989fa" style="top: 50%;" vertical>加载中...</van-loading>
       </van-overlay>
       <van-image-preview v-model="showPicture" :images="images" :startPosition="startPositionIndex"/>
       <a id="downLoadExcel" :href="downLoadTemplateURL" :download="filename"></a>
      </div>
    </template>
    
    <script>
      import { Toast } from 'vant';
    
      export default {
        name: 'chooseProples',
        data() {
          return {
            showPicture: false,        //控制预览图片显示
            show: false,              //控制遮罩层显示
            isLoading: false,         //下拉刷新
            fileList: [],             //文件上传列表
            list: [],                 //图片列表
            result: [],
            id:'',                    //制单差错id
            realpath: './static/img/images/wenjianjia.jpg', //文件图标图片
            pdfPath: './static/img/images/pdfIcon.jpg', //pdf图标图片
            excelPath: './static/img/images/excelIcon.jpg',  //excel图标图片
            wordPath: './static/img/images/wordIcon.jpg',  //word图标图片
            path: [],                 //存放获取的图片路径
            images: [],               //存放需要预览的图片路径
            iamgeFileName: [],        //存放图片文件姓名
            startPositionIndex: 1,    //图片预览起始位置索引
            num: 0,
            downLoadTemplateURL: '',  //下载的文件地址
            filename: '',             //下载后的文件名
            pdfList: [],              //pdf文件路径列表
            excelList: [],            //excel文件路径列表
            wordList: [],             //word文件路径列表
          };
        },
        created(){
          this.getParams()
    
          this.getList()
        },
        components:{
    
        },
        methods: {
          //点击预览
          clickView(path, index, filedata) {
            if(filedata.extend == 'pdf') {  //预览pdf
              this.pdfList.some((item, i) => {
                if(item.imgId == filedata.id) {
                  this.$router.push({
                    name: 'pdfPreview',
                    params: {
                      id: this.id,
                      url: item.url
                    }
                  })
                  return true;
                }
              })
            } else if(filedata.extend == 'xlsx' || filedata.extend == 'xls') {  //预览excel
              this.excelList.some((item, i) => {
                if(item.imgId == filedata.id) {
                  this.$router.push({
                    name: 'excel',
                    params: {
                      id: this.id,
                      url: item.url
                    }
                  })
                  return true;
                }
              })
            } else if(filedata.extend == 'docx' || filedata.extend == 'doc') { //预览word
              this.wordList.some((item, i) => {
                if(item.imgId == filedata.id) {
                  this.$router.push({
                    name: 'word',
                    params: {
                      id: this.id,
                      url: item.url
                    }
                  })
                  return true;
                }
              })
            } else {
              this.iamgeFileName.some((item, i) => {
                if(item == filedata.id) {
                  this.startPositionIndex = i;
                  this.showPicture = true;
                  return true;
                }
              })
            }
          },
          //获取图片路径
          async getFile(res) {
            for(let i = 0; i < res.length; i++) {
              await this.$http.get('/aeo_smart/ICommonApi.do?viewFile_chapter', {
                params: {
                  fileid: res[i].id,
                  subclassname: res[i].subclassname,
                  fid: res[i].id
                },
                responseType: 'blob'
              })
              .then((response) =>{
                  let dataInfo = response.data
                  let fileHeader = '';
                  let typeContent = dataInfo.type;
                  //判断类型是否是图片类型
                  if(res[i].extend == 'png' || res[i].extend == 'gif' || res[i].extend == 'x-icon' || res[i].extend == 'jpg') {
                    fileHeader = "data:image/png;base64,";   //设置base64 的格式
                    typeContent = "image/" + res[i].extend;  //设置blob的格式
    
                    // 生成blob图片,需要参数(字节数组, 文件类型)
                    let blob = new Blob([dataInfo], { type: typeContent })
    
                    const reader = new FileReader();
                    let url = '';
                    reader.onload = function (e) {
                      url = e.target.result
                    }
                    setTimeout(rese => {
                      this.path.push(url);
                      this.images.push(url);
                      this.iamgeFileName.push(res[i].id);
                    }, 500)
    
                    //读取blob对象,获得URL格式的字符串(base64编码)以表示所读取文件的内容
                    reader.readAsDataURL(blob);
    
                  }else if(res[i].extend == 'pdf') {//保存pdf路径
                    var url = window.URL.createObjectURL(dataInfo);
    
                    setTimeout(rese => {
                      this.pdfList.push({url: url, imgId: res[i].id})
                      this.path.push(this.pdfPath);
                    }, 500)
                  } else if(res[i].extend == 'xlsx' || res[i].extend == 'xls') {//保存xlsx路径
                    var url = window.URL.createObjectURL(dataInfo);
    
                    setTimeout(rese => {
                      this.excelList.push({url: url, imgId: res[i].id})
                      this.path.push(this.excelPath);
                    }, 500)
                  } else if(res[i].extend == 'docx' || res[i].extend == 'doc') {//保存word路径
                    var url = window.URL.createObjectURL(dataInfo);
    
                    setTimeout(rese => {
                      this.wordList.push({url: url, imgId: res[i].id})
                      this.path.push(this.wordPath);
                    }, 500)
                  } else {
                    setTimeout(rese => {
                      this.path.push(this.realpath);
                    }, 500)
                  }
    
    
              })
              .catch(function (error) {
                console.log(error);
              });
            }
          },
          //返回键
          back() {
            this.$router.push({
              name: 'voucherErrorInfo',
              params: {
                id: this.id
              }
            })
          },
          onRefresh() {
             setTimeout(() => {
               this.getList();
               this.isLoading = false;
             }, 1000);
          },
          getParams() {
           // 取到路由带过来的参数
           let routerParams = this.$route.params.id
           // 将数据放在当前组件的数据内
           this.id = routerParams
          },
          //获取文件数据
          getList () {
            this.$http.post('/aeo_smart/ICommonApi.do?getVoucherErrorFile', {
              fid: this.id
            })
            .then((response) =>{
              // 当请求成功
              if (response.data.issuccess === "success") {
                this.path = [];
                this.images = [];
                this.iamgeFileName = [];
                this.list = response.data.content
                this.getFile(response.data.content)
              }
              this.isLoading = false;
            })
            .catch(function (error) {
              console.log(error);
            })
            .then(function () {
              // always executed
            });
          },
          //文件提交
          fileSubmit() {
            this.onSubmit()
          },
          //上传文件
          async onSubmit () {
            //获取登录人信息
            let loginUser = JSON.parse(window.localStorage.getItem('loginUser'));
            let formData = new window.FormData();
            if(this.fileList.length > 0) {
              this.show = true;
              for(let i = 0; i < this.fileList.length; i++) {
                formData.append("file", this.fileList[i].file);
                await this.$http.post('/aeo_smart/ICommonApi.do?saveFiles&fid=' + this.id + '&type=voucherError' + '&loginUser=' + loginUser.id + '&departid=' + loginUser.departid, formData, { headers: { "Content-Type": "multipart/form-data" }})
                .then((response) =>{
                  // 当请求成功
                  if (response.data.issuccess === "success") {
                    formData.delete("file");
                  }
                })
                .catch(function (error) {
                  console.log(error);
                })
                .then(function () {
                  // always executed
                });
              }
              this.onRefresh();
              this.fileList = []
              setTimeout(() => {
                this.show = false;
                Toast.success("上传成功");
              }, 1000);
            }
          },
          //删除文件
          delFile(id) {
            this.$dialog.confirm({
              message: '确定删除吗?',
            }).then(() => {
              //开启遮罩层
              this.show = true;
              this.$http.get('/aeo_smart/ICommonApi.do?doDel', {
                params: {
                  id: id
                }
              })
              .then((response) =>{
                // 当请求成功
                if (response.data.issuccess === "success") {
                  this.onRefresh();
                  setTimeout(() => {
                    this.show = false;
                    Toast.success(response.data.result);
                  }, 1000);
                }else {
                  this.$notify(response.data.result);
                }
              })
              .catch(function (error) {
                console.log(error);
              })
              .then(function () {
                // always executed
              });
            });
    
          },
          //下载文件
          downloadFile(file) {
            this.$http.get('/aeo_smart/ICommonApi.do?viewFile_chapter', {
              params: {
                fileid: file.id,
                subclassname: file.subclassname,
                fid: file.id
              },
              responseType: 'blob'
            })
            .then((response) =>{
              let blob = response.data
              let fileName = file.attachmenttitle + "." + file.extend;
              if ('download' in document.createElement('a')) {
                var url = window.URL.createObjectURL(blob);
                this.downLoadTemplateURL = url;
                this.filename = fileName;
    
                setTimeout( () => {
                  document.querySelector("#downLoadExcel").click();
                },500)
    
                setTimeout(() => {
                  window.URL.revokeObjectURL(url); // 释放URL 对象
                }, 1000);
    
                /* //定义一个a标签
                var a = document.createElement('a');
    
                a.style.display = 'none';
               a.href = url;
               a.download = fileName;
                document.body.appendChild(a)
               a.click();
                setTimeout(() => {
                  window.URL.revokeObjectURL(url); // 释放URL 对象
                  document.body.removeChild(a);
                }, 1000);  //解决部分浏览器下载时“无此文件”问题
     */
              } else {
                navigator.msSaveBlob(blob, fileName)
              }
            })
            .catch(function (error) {
              console.log(error);
            });
          },
        }
    
      };
    </script>
    
    <style scoped>
    .van-swipe-cell {
      position: relative;
      box-sizing: border-box;
      width: 100%;
      padding-left: 16px;
      overflow: hidden;
      color: #323233;
      font-size: 14px;
      line-height: 24px;
      background-color: #fff;
      text-align: left;
    }
    .delete-button {
      height: 100%;
      margin-left: 1px;
    }
    .submit{
      position: absolute;
      bottom: 0;
      left: 0;
    }
    </style>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
  • 相关阅读:
    M语言-模式匹配
    系统设计基础
    【Linux】在Xilinx平台上实现UVC Gadget(2)- 解决dwc3驱动bug
    【运维项目经历|026】Redis智能集群构建与性能优化工程
    Mysql-Xtrabackup备份恢复
    【最多等和不相交连续子序列】python实现-附ChatGPT解析
    主干网络篇 | YOLOv8 更换主干网络之 VanillaNet |《华为方舟实验室最新成果》
    图像新型拼接
    【索引】常见的索引、B+树结构、什么时候需要使用索引、优化索引方法、索引主要的数据结构、聚簇索引、二级索引、创建合适的索引等重点知识汇总
    Neural Collaborative Graph Machines for Table Structure Recognition ----论文阅读
  • 原文地址:https://blog.csdn.net/weixin_45956838/article/details/126097118