Browse Source

修改上传PDF控件为“上传文件,格式:PDF、JPG、PNG”控件

Rockery 3 years ago
parent
commit
f05956bb1d

+ 3 - 3
src/components/RocImgFileUpload/index.vue

@@ -3,7 +3,7 @@
  * @Author: Rockery
  * @Date: 2021-12-27 11:19:47
  * @LastEditors: Rockery
- * @LastEditTime: 2022-01-21 14:55:59
+ * @LastEditTime: 2022-02-28 11:25:40
  * @FilePath: \party_construct_web\src\components\RocImgFileUpload\index.vue
  * @Copyright: Copyright (c) 2016~2021 Rockery(1113269755@qq.com)
 -->
@@ -176,13 +176,13 @@ export default {
         }
         this.isSelect = true;
         this.isUploadSuccess = false;
-        this.$emit('input', 'ROCIMGUPLOADSELECT');
+        this.$emit('input', '');
       } else if (file.status === 'success') {
         this.isUploadSuccess = true;
       } else {
         this.isUploadSuccess = false;
         this.isSelect = false;
-        this.$emit('input', 'ROCIMGUPLOADSELECT');
+        this.$emit('input', '');
       }
     },
     /**

+ 383 - 0
src/components/RocImgPdfFileUpload/index.vue

@@ -0,0 +1,383 @@
+<!--
+ * @Description: 单个图片文件或PDF文件上传组件
+ * @Author: Rockery
+ * @Date: 2021-12-20 09:16:41
+ * @LastEditors: Rockery
+ * @LastEditTime: 2022-02-28 11:22:46
+ * @FilePath: \party_construct_web\src\components\RocImgPdfFileUpload\index.vue
+ * @Copyright: Copyright (c) 2016~2021 Rockery(1113269755@qq.com)
+-->
+
+<template>
+  <div class="rocimgpdffileupload">
+    <div class="rocimgpdffileupload-attachment" v-loading="removeLoading">
+      <el-upload
+        ref="rocImgPdfFileUploadRef"
+        :disabled="disabled"
+        :limit="1"
+        accept=".pdf, .jpg, .png"
+        :auto-upload="true"
+        :show-file-list="true"
+        :action="actionUrl"
+        :headers="headers"
+        :before-upload="handleRocImgPdfFileUploadBeforeUpload"
+        :on-success="handleRocImgPdfFileUploadOnsuccess"
+        :on-change="handleRocImgPdfFileUploadOnchange"
+        :on-remove="handleRocImgPdfFileUploadOnRemove"
+        :on-exceed="handleRocImgPdfFileUploadOnExceed"
+        :class="{'is-disabled':disabled}"
+        class="rocimgpdffileupload-attachment-fileupload"
+      >
+        <div class="rocimgpdffileupload-attachment-fileupload-content">
+          <i class="el-icon-plus" />
+          上传文件,格式:PDF、JPG、PNG
+        </div>
+      </el-upload>
+      <div
+        v-if="isUploadSuccess"
+        class="fl rocimgpdffileupload-attachment-addr"
+        @click="handleRocImgPdfFileUploadUrlClick"
+      >
+        <div>文件上传成功地址:</div>
+        <div>{{ successResp.name }}</div>
+      </div>
+      <el-button
+        v-if="isSelect && !isUploadSuccess"
+        type="primary"
+        size="small"
+        @click="submitRocImgPdfFileUploadClick"
+      >上传文件</el-button>
+      <el-button
+        v-if="isSelect"
+        type="info"
+        size="small"
+        @click="removeRocImgPdfFileUploadClick"
+      >移除文件</el-button>
+    </div>
+
+    <roc-vue-img-dialog
+      v-if="imgDialogVisible"
+      :visible.sync="imgDialogVisible"
+      :imgUrl="successResp.successUrl"
+    ></roc-vue-img-dialog>
+
+    <roc-vue-pdf-dialog
+      v-if="pdfDialogVisible"
+      :visible.sync="pdfDialogVisible"
+      :pdfUrl="successResp.successUrl"
+    ></roc-vue-pdf-dialog>
+  </div>
+</template>
+
+<script>
+import { getToken } from '@/utils/auth';
+
+export default {
+  name: 'Rocimgpdffileupload',
+  components: {
+    'roc-vue-img-dialog': () => import('@/components/RocVueImgDialog'),
+    'roc-vue-pdf-dialog': () => import('@/components/RocVuePdfDialog')
+  },
+  props: {
+    // 值
+    value: {
+      type: String,
+      default: ''
+    },
+    // PDF、JPG、PNG文件上传地址
+    uploadUrl: {
+      type: String,
+      default: `${process.env.VUE_APP_FILE_UPLOAD_API}`
+    },
+    // 请求头对象
+    uploadHeaders: {
+      type: Object,
+      default: () => {
+        return {
+          Authorization: 'Bearer ' + getToken()
+        };
+      }
+    },
+    // 上传文件标题
+    uploadFileTitle: {
+      type: String,
+      default: ''
+    },
+    // 是否禁用
+    isDisabled: {
+      type: Boolean,
+      default: false
+    }
+  },
+  data() {
+    return {
+      // 是否选择PDF、JPG、PNG文件
+      isSelect: false,
+      // 是否上传PDF、JPG、PNG文件成功
+      isUploadSuccess: false,
+      // PDF、JPG、PNG文件上传成功数据对象
+      successUrl: '',
+      // PDF、JPG、PNG文件上传成功数据对象
+      successResp: {},
+      pdfDialogVisible: false,
+      imgDialogVisible: false,
+      removeLoading: false,
+      setTimeoutTimer: null,
+      // 文件类型
+      fileType: ''
+    };
+  },
+  computed: {
+    // PDF、JPG、PNG文件上传地址
+    actionUrl() {
+      return this.uploadUrl;
+    },
+    // 请求头对象
+    headers() {
+      return this.uploadHeaders;
+    },
+    // 上传文件标题
+    fileTitle() {
+      if (this.uploadFileTitle) {
+        return `文件【${this.uploadFileTitle}】`;
+      }
+
+      return '文件';
+    },
+    // 是否禁用
+    disabled() {
+      return this.isDisabled;
+    }
+  },
+  destroyed() {
+    this.setTimeoutTimer && clearTimeout(this.setTimeoutTimer);
+  },
+  methods: {
+    /**
+     * PDF、JPG、PNG文件上传预处理
+     */
+    handleRocImgPdfFileUploadBeforeUpload(file) {
+      if (['image/png', 'image/jpeg'].includes(file.type || '')) { // 图片文件
+        this.fileType = 'IMG';
+      } else if (['application/pdf'].includes(file.type || '')) { // PDF文件
+        this.fileType = 'PDF';
+      } else {
+        this.$refs.rocImgPdfFileUploadRef.clearFiles();
+        this.msgError(`${this.fileTitle}格式错误,请上传类型格式为PDF、JPG、PNG的文件!`);
+        return;
+      }
+    },
+    /**
+     * PDF、JPG、PNG文件上传成功处理
+     */
+    handleRocImgPdfFileUploadOnsuccess(response, file, fileList) {
+      // 校验封面图片是否上传成功
+      if (response.code !== 200) {
+        this.$refs.rocImgPdfFileUploadRef?.clearFiles?.();
+        this.isSelect = false;
+        this.isUploadSuccess = false;
+        this.fileType = '';
+        this.msgError(`上传${this.fileTitle}失败,请重新选择文件上传!`);
+        return;
+      }
+
+      let successUrl = `${window.origin}${process.env.VUE_APP_FILE_VIEW_API}${response?.data?.url}`;
+
+      // 绑定封面图片数据
+      this.successUrl = successUrl;
+
+      // PDF、JPG、PNG文件上传成功数据对象
+      this.successResp = {
+        ...response?.data,
+        successUrl: successUrl
+      };
+
+      this.$emit('input', response?.data?.url);
+      this.isUploadSuccess = true;
+      this.$alert(`PDF${this.fileTitle}上传成功!`, '上传结果', { dangerouslyUseHTMLString: true, type: 'success' });
+    },
+    /**
+     * PDF、JPG、PNG文件状态改变
+     */
+    handleRocImgPdfFileUploadOnchange(file, fileList) {
+      if (file.status === 'ready') {
+        if (['image/png', 'image/jpeg'].includes((file.raw || {}).type || '')) { // 图片文件
+          this.fileType = 'IMG';
+        } else if (['application/pdf'].includes((file.raw || {}).type || '')) { // PDF文件
+          this.fileType = 'PDF';
+        } else {
+          this.$refs.rocImgPdfFileUploadRef.clearFiles();
+          this.isSelect = false;
+          this.msgError(`${this.fileTitle}格式错误,请上传类型格式为PDF、JPG、PNG的文件!`);
+          return;
+        }
+
+        this.isSelect = true;
+        this.isUploadSuccess = false;
+        this.$emit('input', '');
+      } else if (file.status === 'success') {
+        this.isUploadSuccess = true;
+      } else {
+        this.isUploadSuccess = false;
+        this.isSelect = false;
+        this.fileType = '';
+        this.$emit('input', '');
+      }
+    },
+    /**
+     * PDF、JPG、PNG文件列表移除文件时的钩子
+     */
+    handleRocImgPdfFileUploadOnRemove(file, fileList) {
+      this.removeLoading = true;
+      this.setTimeoutTimer = setTimeout(() => {
+        this.successResp = {};
+        this.successUrl = '';
+        this.isUploadSuccess = false;
+        this.isSelect = false;
+        this.fileType = '';
+        this.$emit('input', '');
+        this.setTimeoutTimer && clearTimeout(this.setTimeoutTimer);
+        this.removeLoading = false;
+      }, 900);
+    },
+    /**
+     * PDF、JPG、PNG文件超出个数限制时的钩子
+     */
+    handleRocImgPdfFileUploadOnExceed(files, fileList) {
+      this.msgWarning(`只允许上传单个${this.fileTitle}`);
+    },
+    /**
+     * 提交上传相关材料PDF、JPG、PNG文件
+     */
+    submitRocImgPdfFileUploadClick() {
+      if (!this.isSelect) { return; }
+      this.$confirm(`确定上传${this.fileTitle}操作吗?`, '提示', {
+        confirmButtonText: '确定 ',
+        cancelButtonText: '取消 ',
+        type: 'info'
+      }).then(() => {
+        this.$refs.rocImgPdfFileUploadRef?.submit?.();
+      }).catch(() => {
+        this.msgInfo('您已取消上传操作!');
+      });
+    },
+    /**
+     * 移除选择相关材料PDF、JPG、PNG文件
+     */
+    removeRocImgPdfFileUploadClick() {
+      this.removeLoading = true;
+      this.$refs.rocImgPdfFileUploadRef.clearFiles();
+      this.setTimeoutTimer = setTimeout(() => {
+        this.isSelect = false;
+        this.isUploadSuccess = false;
+        this.successResp = {};
+        this.successUrl = '';
+        this.fileType = '';
+        this.$emit('input', '');
+        this.setTimeoutTimer && clearTimeout(this.setTimeoutTimer);
+        this.removeLoading = false;
+      }, 1000);
+    },
+    /**
+     * PDF、JPG、PNG文件地址单击事件
+     */
+    handleRocImgPdfFileUploadUrlClick() {
+      if (this.fileType === 'IMG') {
+        this.imgDialogVisible = true;
+      } else if (this.fileType === 'PDF') {
+        this.pdfDialogVisible = true;
+      } else {
+        this.imgDialogVisible = false;
+        this.pdfDialogVisible = false;
+      }
+    }
+  }
+}
+</script>
+
+<style lang="scss">
+.rocimgpdffileupload {
+  .rocimgpdffileupload-attachment {
+    &-fileupload {
+      .el-upload {
+        position: relative;
+        overflow: hidden;
+        width: 100%;
+        border: 1px dashed #d9d9d9;
+        border-radius: 6px;
+        cursor: pointer;
+
+        &:hover {
+          border-color: #409eff;
+        }
+      }
+
+      .el-upload-list.el-upload-list--text {
+        .el-upload-list__item:first-child {
+          margin-top: 0;
+        }
+      }
+
+      &-content {
+        width: 100%;
+        height: 32px;
+        font-size: 14px;
+        font-weight: 400;
+        color: #8c939d;
+        text-align: center;
+      }
+
+      &.is-disabled {
+        .el-upload {
+          position: relative;
+          overflow: hidden;
+          width: 100%;
+          background-color: #f5f7fa;
+          border: 1px dashed #dfe4ed;
+          border-radius: 6px;
+          cursor: not-allowed;
+
+          &:hover {
+            border-color: #dfe4ed;
+          }
+
+          .rocimgpdffileupload-attachment-fileupload-content {
+            color: #c0c4cc;
+          }
+        }
+      }
+    }
+
+    &-addr {
+      width: 100%;
+      padding: 5px 0;
+
+      div {
+        &:first-child,
+        &:last-child {
+          margin-left: 4px;
+          width: 100%;
+          height: 20px;
+          vertical-align: middle;
+          font-size: 14px;
+          font-weight: 400;
+          color: #606266;
+          line-height: 20px;
+        }
+
+        &:last-child {
+          height: 25px;
+          line-height: 25px;
+          cursor: pointer;
+          opacity: 0.8;
+
+          &:hover {
+            color: #409eff;
+            text-decoration: underline;
+          }
+        }
+      }
+    }
+  }
+}
+</style>

+ 3 - 4
src/components/RocPdfFileUpload/index.vue

@@ -3,7 +3,7 @@
  * @Author: Rockery
  * @Date: 2021-12-20 09:16:41
  * @LastEditors: Rockery
- * @LastEditTime: 2022-01-17 14:50:52
+ * @LastEditTime: 2022-02-28 11:25:16
  * @FilePath: \party_construct_web\src\components\RocPdfFileUpload\index.vue
  * @Copyright: Copyright (c) 2016~2021 Rockery(1113269755@qq.com)
 -->
@@ -39,7 +39,6 @@
         @click="handleRocPdfFileUploadUrlClick"
       >
         <div>文件上传成功地址:</div>
-        <!-- <a :href="successUrl" target="_blank">{{ successUrl }}</a> -->
         <div>{{ successResp.name }}</div>
       </div>
       <el-button
@@ -190,13 +189,13 @@ export default {
         }
         this.isSelect = true;
         this.isUploadSuccess = false;
-        // this.$emit('input', 'ROCPDFUPLOADSELECT');
+        this.$emit('input', '');
       } else if (file.status === 'success') {
         this.isUploadSuccess = true;
       } else {
         this.isUploadSuccess = false;
         this.isSelect = false;
-        // this.$emit('input', 'ROCPDFUPLOADSELECT');
+        this.$emit('input', '');
       }
     },
     /**

+ 121 - 0
src/components/RocVueImgDialog/index.vue

@@ -0,0 +1,121 @@
+<!--
+ * @Description: Img文件预览弹框
+ * @Author: Rockery
+ * @Date: 2021-12-13 17:40:22
+ * @LastEditors: Rockery
+ * @LastEditTime: 2022-02-28 11:17:31
+ * @FilePath: \party_construct_web\src\components\RocVueImgDialog\index.vue
+ * @Copyright: Copyright (c) 2016~2021 Rockery(1113269755@qq.com)
+-->
+
+<template>
+  <div class="rocvueimgdialog">
+    <el-dialog
+      :title="dialogTitle"
+      :visible.sync="currentVisible"
+      width="650px"
+      append-to-body
+      class="rocvueimgdialog-dialog"
+      @close="handleCloseDialogClick"
+    >
+      <div v-viewer class="rocvueimgdialog-dialog-content">
+        <img
+          :src="imgUrl"
+          :style="{maxWidth: realWidth, maxHeight: realHeight}"
+          @error="imgViewerOnerror"
+        />
+      </div>
+      <div slot="footer" class="dialog-footer">
+        <el-button @click="handleCloseDialogClick">关 闭</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import Vue from 'vue';
+import Viewer from 'v-viewer';
+import 'viewerjs/dist/viewer.css';
+Vue.use(Viewer, {
+  defaultOptions: {
+    zIndex: 9999
+  }
+});
+
+export default {
+  name: 'Rocvueimgdialog',
+  props: {
+    // 是否显示对话框
+    visible: {
+      type: Boolean,
+      required: true,
+      default: true
+    },
+    // 对话框标题
+    dialogTitle: {
+      type: String,
+      required: false,
+      default: 'Img文件预览'
+    },
+    // Img文件访问路径
+    imgUrl: {
+      type: String,
+      required: true,
+      default: ''
+    },
+    width: {
+      type: [Number, String],
+      default: '300px'
+    },
+    height: {
+      type: [Number, String],
+      default: '300px'
+    }
+  },
+  data() {
+    return {
+    };
+  },
+  computed: {
+    currentVisible: {
+      get() {
+        return this.visible;
+      },
+      set(val) {
+        this.$emit('update:visible', val);
+      }
+    },
+    realWidth() {
+      return typeof this.width == 'string' ? this.width : `${this.width}px`
+    },
+    realHeight() {
+      return typeof this.height == 'string' ? this.height : `${this.height}px`
+    }
+  },
+  methods: {
+    /**
+     * 对话框关闭事件
+    */
+    handleCloseDialogClick() {
+      this.currentVisible = false;
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.rocvueimgdialog {
+  &-dialog {
+    ::v-deep {
+      .el-dialog__header {
+        border-bottom: 1px solid #dfe4ed;
+      }
+
+      .el-dialog__body {
+        padding: 20px 20px 30px;
+        text-align: center;
+      }
+    }
+  }
+}
+</style>