20240109-yw
wangwei 12 months ago
parent 241ff83934
commit 35c35bd061

@ -0,0 +1,152 @@
<template>
<div>
<div class="user-info-head">
<el-row>
<el-col :span="6">
<el-button type="primary" icon="el-icon-view" size="small" @click="showImgViewer">
</el-button>
</el-col>
<el-col :span="6">
<el-upload action="#" :http-request="requestUpload" :show-file-list="false" :before-upload="beforeUpload">
<el-button type="primary" icon="el-icon-plus" size="small" @click="uploadPdf"></el-button>
</el-upload>
</el-col>
</el-row>
</div>
</div>
</template>
<script>
import {uploadFile} from "@/api/basic/uploadZz";
export default {
props: {
formName: {
type: Object,
required: true,
},
inputQuery: {
type: Object,
required: true,
},
},
data() {
return {
filePdf:{}
};
},
methods: {
//
requestUpload() {
},
//
beforeUpload(file) {
console.log("zhegewenjian hdhdhd",file)
this.filePdf.fileName = file.name
if (file.type === "application/pdf") {
uploadFile(file).then(response => {
console.log("上传成功")
this.inputQuery.filePath = this.inputQuery.filePath + ";" + this.options.img + ";"
this.splitImages()
this.$modal.msgSuccess("提交成功");
this.visible = false;
});
} else {
this.$modal.msgError("文件格式错误请上传Pdf类型的文件。");
}
},
// getCropFile(data) {
// debugger
// console.log(data);
// uploadFile(data).then(response => {
// this.open = false;
// this.options.img = response.data.name;
// this.inputQuery.filePath = this.inputQuery.filePath + ";" + this.options.img + ";"
// this.splitImages()
// this.$modal.msgSuccess("");
// this.visible = false;
// });
// },
// Pdf
uploadPdf() {
let formData = new FormData();
console.log("xixiixixixiixixixi",this.filePdf.fileName)
formData.append("file", data, this.options.filename);
formData.append("type", "pdf2");
uploadFile(formData).then(response => {
this.open = false;
console.log(response.data.name);
this.options.img = response.data.name;
this.inputQuery.filePath = this.options.img
this.$modal.msgSuccess("提交成功");
this.visible = false;
});
},
//
closeDialog() {
this.visible = false;
},
splitImages() {
// filePath
if (typeof this.inputQuery.filePath !== "string") {
console.warn("inputQuery.filePath is not a string");
return;
}
try {
//
let imagePaths = this.inputQuery.filePath.split(";");
//
this.imgList = imagePaths.filter(path => path.trim() !== "" && path.trim() !== null && path.trim() !== "null");
console.log(this.imgList);
} catch (error) {
//
this.imgList = [];
}
},
},
created() {
this.splitImages();
}
};
</script>
<style scoped lang="scss">
.user-info-head {
//position: relative;
//display: inline-block;
}
//.user-info-head:hover:after {
// content: '+';
// position: absolute;
// left: 0;
// right: 0;
// top: 0;
// bottom: 0;
// color: #eee;
// background: rgba(0, 0, 0, 0.5);
// font-size: 24px;
// font-style: normal;
// -webkit-font-smoothing: antialiased;
// -moz-osx-font-smoothing: grayscale;
// cursor: pointer;
// line-height: 110px;
//}
.zz-upload-preview {
position: absolute;
top: 50%;
-webkit-transform: translate(50%, -50%);
transform: translate(50%, -50%);
-webkit-box-shadow: 0 0 4px #ccc;
box-shadow: 0 0 4px #ccc;
overflow: hidden;
}
</style>
Loading…
Cancel
Save