|
@@ -0,0 +1,292 @@
|
|
|
+<!--
|
|
|
+ * @Description: 表单JPG、PNG、PDF文件上传控件
|
|
|
+ * @Author: Rockery
|
|
|
+ * @Date: 2022-02-28 11:31:41
|
|
|
+ * @LastEditors: Rockery
|
|
|
+ * @LastEditTime: 2022-02-28 16:19:11
|
|
|
+ * @FilePath: \party_construct_web\src\components\RocFormItemImgPdfUpload\index.vue
|
|
|
+ * @Copyright: Copyright (c) 2016~2021 Rockery(1113269755@qq.com)
|
|
|
+-->
|
|
|
+
|
|
|
+<template>
|
|
|
+ <div class="rocformitemimgpdfupload">
|
|
|
+ <div
|
|
|
+ v-if="(currentOperateType === 'EDIT') && currentFormItemValue"
|
|
|
+ class="rocformitemimgpdfupload-editmode"
|
|
|
+ >
|
|
|
+ <div class="rocformitemimgpdfupload-editmode-view" @click="handleViewPageCheckClick">查看</div>
|
|
|
+ <div class="rocformitemimgpdfupload-editmode-update" @click="handleUpdatePdfFileClick">更新</div>
|
|
|
+ <div class="rocformitemimgpdfupload-editmode-download" @click="handleViewPageDownloadClick">下载</div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <roc-img-pdf-file-upload
|
|
|
+ v-else
|
|
|
+ :key="imgPdfFileUploadKey"
|
|
|
+ v-model="currentValue"
|
|
|
+ upload-file-title="本人简历(包括学历"
|
|
|
+ ></roc-img-pdf-file-upload>
|
|
|
+
|
|
|
+ <roc-vue-img-dialog
|
|
|
+ v-if="imgDialogVisible"
|
|
|
+ :visible.sync="imgDialogVisible"
|
|
|
+ :dialog-title="viewImgFileObj.fileName"
|
|
|
+ :img-url="viewImgFileObj.filePath"
|
|
|
+ ></roc-vue-img-dialog>
|
|
|
+
|
|
|
+ <roc-vue-pdf-dialog
|
|
|
+ v-if="pdfDialogVisible"
|
|
|
+ :visible.sync="pdfDialogVisible"
|
|
|
+ :dialog-title="viewPdfFileObj.fileName"
|
|
|
+ :pdf-url="viewPdfFileObj.filePath"
|
|
|
+ ></roc-vue-pdf-dialog>
|
|
|
+
|
|
|
+ <!-- 更新 PDF 文件对话框 -->
|
|
|
+ <el-dialog
|
|
|
+ :title="updatePdfFileDialogObj.title"
|
|
|
+ :visible.sync="updatePdfFileDialogObj.visible"
|
|
|
+ width="600px"
|
|
|
+ >
|
|
|
+ <div class="updatepartydevelop-updatepdffiledialog">
|
|
|
+ <roc-img-pdf-file-upload
|
|
|
+ :key="updatePdfFileDialogObj.key"
|
|
|
+ v-model="updatePdfFileDialogObj.fieldValue"
|
|
|
+ :upload-file-title="updatePdfFileDialogObj.title"
|
|
|
+ ></roc-img-pdf-file-upload>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div slot="footer" class="dialog-footer">
|
|
|
+ <el-button type="rocpartyprimaryplainbtn" @click="handleUpdatePdfFileCancelClick">取 消</el-button>
|
|
|
+ <el-button
|
|
|
+ type="rocpartyprimarybtn"
|
|
|
+ :disabled="!updatePdfFileDialogObj.fieldValue || updatePdfFileDialogObj.fieldValue === 'ROCPDFUPLOADSELECT'"
|
|
|
+ @click="handleUpdatePdfFileSubmitClick"
|
|
|
+ >确 定</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import { regularDownloadImgPdfFile } from "@/utils/rockeryutil";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: 'Rocformitemimgpdfupload',
|
|
|
+ components: {
|
|
|
+ 'roc-vue-img-dialog': () => import('@/components/RocVueImgDialog'),
|
|
|
+ 'roc-vue-pdf-dialog': () => import('@/components/RocVuePdfDialog'),
|
|
|
+ 'roc-img-pdf-file-upload': () => import('@/components/RocImgPdfFileUpload')
|
|
|
+ },
|
|
|
+ props: {
|
|
|
+ // 值
|
|
|
+ value: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ // 操作类型
|
|
|
+ operateType: {
|
|
|
+ type: String,
|
|
|
+ required: true
|
|
|
+ },
|
|
|
+ // 表单项的字段
|
|
|
+ formItemField: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ // 表单项的标题
|
|
|
+ formItemLabel: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ // 表单项的字段值
|
|
|
+ formItemValue: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ // 表单项的描述
|
|
|
+ formItemDesc: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ },
|
|
|
+ // PDF、JPG、PNG文件上传控件唯一标识
|
|
|
+ imgPdfFileUploadKey: {
|
|
|
+ type: String,
|
|
|
+ default: ''
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ viewPdfFileObj: {
|
|
|
+ filePath: '',
|
|
|
+ fileName: ''
|
|
|
+ },
|
|
|
+ pdfDialogVisible: false,
|
|
|
+ viewImgFileObj: {
|
|
|
+ filePath: '',
|
|
|
+ fileName: ''
|
|
|
+ },
|
|
|
+ imgDialogVisible: false,
|
|
|
+ updatePdfFileDialogObj: {
|
|
|
+ title: '',
|
|
|
+ visible: false,
|
|
|
+ field: '',
|
|
|
+ fieldValue: '',
|
|
|
+ key: ''
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ currentValue: {
|
|
|
+ get() {
|
|
|
+ return this.value;
|
|
|
+ },
|
|
|
+ set(val) {
|
|
|
+ this.$emit('input', val);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ currentOperateType: {
|
|
|
+ get() {
|
|
|
+ return this.operateType;
|
|
|
+ },
|
|
|
+ set(val) {
|
|
|
+ this.$emit('update:operateType', val);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ currentFormItemValue: {
|
|
|
+ get() {
|
|
|
+ return this.formItemValue;
|
|
|
+ },
|
|
|
+ set(val) {
|
|
|
+ this.$emit('update:formItemValue', val);
|
|
|
+ }
|
|
|
+ },
|
|
|
+ currentFormItemDesc: {
|
|
|
+ get() {
|
|
|
+ return this.formItemDesc;
|
|
|
+ },
|
|
|
+ set(val) {
|
|
|
+ this.$emit('update:formItemDesc', val);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /**
|
|
|
+ * 编辑模式PDF文件查看按钮事件
|
|
|
+ */
|
|
|
+ handleViewPageCheckClick() {
|
|
|
+ if (!this.currentValue) return;
|
|
|
+
|
|
|
+ // 获取文件类型
|
|
|
+ const fileIndex = this.currentValue.toString().lastIndexOf(".");
|
|
|
+ const fileType = this.currentValue.toString().substr(fileIndex + 1);
|
|
|
+
|
|
|
+ // 组装文件访问地址
|
|
|
+ const filePath = `${window.origin}${process.env.VUE_APP_FILE_VIEW_API}${this.currentValue}`;
|
|
|
+
|
|
|
+ // 判断文件类型
|
|
|
+ if (['jpg', 'png'].includes(fileType)) { // Img文件
|
|
|
+ const fileName = this.formItemLabel ? `${this.formItemLabel}—图片文件预览` : '图片文件预览';
|
|
|
+ this.viewImgFileObj = {
|
|
|
+ filePath,
|
|
|
+ fileName
|
|
|
+ };
|
|
|
+ this.imgDialogVisible = true;
|
|
|
+
|
|
|
+ } else if (['pdf'].includes(fileType)) { // PDF文件
|
|
|
+ const fileName = this.formItemLabel ? `${this.formItemLabel}—PDF文件预览` : 'PDF文件预览';
|
|
|
+ this.viewPdfFileObj = {
|
|
|
+ filePath,
|
|
|
+ fileName
|
|
|
+ };
|
|
|
+ this.pdfDialogVisible = true;
|
|
|
+
|
|
|
+ } else { // 不符合类型文件
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 更新PDF文件按钮事件
|
|
|
+ */
|
|
|
+ handleUpdatePdfFileClick() {
|
|
|
+
|
|
|
+ // 判断必需参数是否有值
|
|
|
+ if (!this.currentFormItemValue || !this.formItemField || !this.formItemLabel) return;
|
|
|
+
|
|
|
+ // 组装更新对话框数据
|
|
|
+ this.updatePdfFileDialogObj = {
|
|
|
+ title: `更新${this.formItemLabel}信息`,
|
|
|
+ visible: true,
|
|
|
+ field: this.formItemField,
|
|
|
+ fieldValue: '',
|
|
|
+ key: `${this.formItemField}-${new Date().getTime()}`
|
|
|
+ };
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 更新PDF文件对话框的确定按钮事件
|
|
|
+ */
|
|
|
+ handleUpdatePdfFileSubmitClick() {
|
|
|
+ this.currentValue = this.updatePdfFileDialogObj.fieldValue;
|
|
|
+ this.$alert(`已确定更新${this.formItemLabel}文件,待进行保存操作!`, '提示消息', { type: 'success' });
|
|
|
+ this.updatePdfFileDialogObj.visible = false;
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 更新PDF文件对话框的取消按钮事件
|
|
|
+ */
|
|
|
+ handleUpdatePdfFileCancelClick() {
|
|
|
+ this.updatePdfFileDialogObj.visible = false;
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.updatePdfFileDialogObj = {
|
|
|
+ ...this.updatePdfFileDialogObj,
|
|
|
+ field: '',
|
|
|
+ fieldValue: '',
|
|
|
+ key: ''
|
|
|
+ };
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /**
|
|
|
+ * 编辑模式PDF文件下载按钮事件
|
|
|
+ */
|
|
|
+ handleViewPageDownloadClick() {
|
|
|
+ if (!this.currentValue) return;
|
|
|
+ regularDownloadImgPdfFile(`${window.origin}${process.env.VUE_APP_FILE_VIEW_API}${this.currentValue}`, this.currentFormItemDesc);
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss">
|
|
|
+.rocformitemimgpdfupload {
|
|
|
+ &-editmode {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: left;
|
|
|
+ width: 100%;
|
|
|
+ height: 36px;
|
|
|
+ line-height: 36px;
|
|
|
+
|
|
|
+ div {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
+ height: 36px;
|
|
|
+ font-weight: 400;
|
|
|
+ font-style: normal;
|
|
|
+ font-size: 18px;
|
|
|
+ color: rgba(24, 144, 255, 0.996);
|
|
|
+ line-height: 36px;
|
|
|
+ cursor: pointer;
|
|
|
+
|
|
|
+ &:last-child {
|
|
|
+ margin-left: 30px;
|
|
|
+ }
|
|
|
+
|
|
|
+ &:hover {
|
|
|
+ text-decoration: underline;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ &-update {
|
|
|
+ margin-left: 30px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+</style>
|