|
@@ -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>
|