4/12 修改bug 证书 文件

20240109-yw
wangwei 12 months ago
parent 8275999fa6
commit 9485bed2c2

@ -1,15 +1,38 @@
<template>
<div>
<div v-if="!options.img && formName != 3" @click="editCropper()"> <el-button type="primary" size="small"></el-button></div>
<div v-if="options.img && formName != 3" class="user-info-head" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }" @click="editCropper()">
<img v-bind:src="options.img" title="点击上传资质" class="img-zz" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>
</div>
<div v-if="options.img && formName == 3" class="user-info-head" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">
<img v-bind:src="options.img" title="点击上传资质" class="img-zz" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>
<div class="user-info-head">
<el-row>
<el-col :span="6">
<el-button type="primary" icon="el-icon-view" size="small" @click="showImgViewer">
({{ imgList.length }})
</el-button>
</el-col>
<el-col :span="6">
<cropperFile
@getCropFile="getCropFile"
></cropperFile>
</el-col>
</el-row>
<el-image-viewer style="z-index:9999" v-if="imgViewerVisible" :on-close="closeImgViewer"
:url-list="imgList"/>
<!-- <img v-bind:src="options.img" title="点击上传资质" class="img-zz"-->
<!-- :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>-->
<!-- <cropperFile-->
<!-- style="position: absolute; top: 10px;left: 10px;"-->
<!-- @getCropFile="getCropFile"-->
<!-- ></cropperFile>-->
</div>
<el-dialog :title="title" :visible.sync="open" width="1200px" append-to-body @opened="modalOpened" @close="closeDialog">
<!-- <div v-if="options.img && formName == 3" class="user-info-head"-->
<!-- :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">-->
<!-- <img v-bind:src="options.img" title="点击上传资质" class="img-zz"-->
<!-- :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>-->
<!-- </div>-->
<el-dialog :title="title" :visible.sync="open" width="100%" append-to-body @opened="modalOpened"
@close="closeDialog">
<el-row>
<el-col :xs="24" :md="12" :style="{height: '500px'}">
<el-col :xs="24" :md="18" :style="{width: '630px',height: '891px'}">
<vue-cropper
ref="cropper"
:img="options.img"
@ -22,13 +45,13 @@
v-if="visible"
/>
</el-col>
<el-col :xs="24" :md="12" :style="{height: '500px'}">
<div class="zz-upload-preview" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">
<img :src="previews.url" :style="previews.img" />
</div>
</el-col>
<!-- <el-col :xs="24" :md="12" :style="{height: '500px'}">-->
<!-- <div class="zz-upload-preview" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">-->
<!-- <img :src="previews.url" :style="previews.img" />-->
<!-- </div>-->
<!-- </el-col>-->
</el-row>
<br />
<br/>
<el-row>
<el-col :lg="2" :md="2">
<el-upload action="#" :http-request="requestUpload" :show-file-list="false" :before-upload="beforeUpload">
@ -56,38 +79,39 @@
</el-row>
<el-row style="margin-top: 20px">
<el-col :lg="{span: 3, offset: -3}" :md="2">
<el-form-item label="长度:" class="query-form-item">
<el-input
size="small"
style="width: 100px;"
splaceholder="长度"
v-model="options.autoCropWidth"
></el-input>
</el-form-item>
</el-col>
<el-col :lg="{span: 3, offset: 2}" :md="2">
<el-form-item label="宽度:" class="query-form-item">
<el-input
size="small"
style="width: 100px;"
splaceholder="宽度"
v-model="options.autoCropHeight"
></el-input>
</el-form-item>
</el-col>
<!-- <el-col :lg="{span: 3, offset: -3}" :md="2">-->
<!-- <el-form-item label="长度:" class="query-form-item">-->
<!-- <el-input-->
<!-- size="small"-->
<!-- style="width: 100px;"-->
<!-- splaceholder="长度"-->
<!-- v-model="options.autoCropWidth"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- <el-col :lg="{span: 3, offset: 2}" :md="2">-->
<!-- <el-form-item label="宽度:" class="query-form-item">-->
<!-- <el-input-->
<!-- size="small"-->
<!-- style="width: 100px;"-->
<!-- splaceholder="宽度"-->
<!-- v-model="options.autoCropHeight"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
</el-dialog>
</div>
</template>
<script>
import store from "@/store";
import { VueCropper } from "vue-cropper";
import { uploadFile } from "@/api/basic/uploadZz";
import {VueCropper} from "vue-cropper";
import {uploadFile} from "@/api/basic/uploadZz";
import cropperFile from "@/views/components/cropperFile";
import ElImageViewer from "element-ui/packages/image/src/image-viewer"
export default {
components: { VueCropper },
components: {VueCropper, cropperFile, ElImageViewer},
props: {
formName: {
type: Object,
@ -112,12 +136,36 @@ export default {
original: true,
img: this.inputQuery.filePath, //
autoCrop: false, //
autoCropWidth: 200, //
autoCropHeight: 200, //
autoCropWidth: 630, //
autoCropHeight: 891, //
fixedBox: false, //
filename: ''
},
previews: {}
imgList: [],
imgViewerVisible: false,
crap: true,
previews: {},
show: true,
//
fixed: false,
//
fixedNumber: [1, 2],
//
info: true,
// canScale
canScale: true,
// infoTrue true false :
infoTrue: true,
// maxImgSize
maxImgSize: 2000,
// enlarge
enlarge: 1,
// mode
mode: 'contain',
};
},
methods: {
@ -158,6 +206,20 @@ export default {
};
}
},
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;
});
},
//
uploadImg() {
this.$refs.cropper.getCropBlob(data => {
@ -182,32 +244,70 @@ export default {
//
closeDialog() {
this.visible = false;
}
},
showImgViewer() {
this.imgViewerVisible = true;
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
},
closeImgViewer() {
this.imgViewerVisible = false;
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'auto';
document.removeEventListener("touchmove", m, true);
},
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;
//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;
}
//.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 {

@ -258,6 +258,8 @@
:defaultSys="defaultSys"></selectSingleUnit>
</el-dialog>
<!--表单-->
<el-dialog
:title="formMap[formName]"
:visible.sync="formVisible"
@ -454,6 +456,10 @@
<!-- </div>-->
</el-dialog>
<el-dialog
:title="formAuthName"
:visible.sync="orderMutiSetAuthVisible"
@ -519,7 +525,11 @@ export default {
},
data() {
return {
formAuthName: "资质证书详情",
formAuthName: '资质证书列表',
formAuthNameMap:{
0:"供应商信息",
1:"客户信息"
},
inputAuthQuery:{},
orderMutiSetAuthVisible: false,
BASE_URL: process.env.VUE_APP_BASE_API,

@ -1,15 +1,38 @@
<template>
<div>
<div v-if="!options.img && formName != 3" @click="editCropper()"> <el-button type="primary" size="small"></el-button></div>
<div v-if="options.img && formName != 3" class="user-info-head" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }" @click="editCropper()">
<img v-bind:src="options.img" title="点击上传资质" class="img-zz" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>
</div>
<div v-if="options.img && formName == 3" class="user-info-head" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">
<img v-bind:src="options.img" title="点击上传资质" class="img-zz" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>
<div class="user-info-head">
<el-row>
<el-col :span="6">
<el-button type="primary" icon="el-icon-view" size="small" @click="showImgViewer">
({{ imgList.length }})
</el-button>
</el-col>
<el-col :span="6">
<cropperFile
@getCropFile="getCropFile"
></cropperFile>
</el-col>
</el-row>
<el-image-viewer style="z-index:9999" v-if="imgViewerVisible" :on-close="closeImgViewer"
:url-list="imgList"/>
<!-- <img v-bind:src="options.img" title="点击上传资质" class="img-zz"-->
<!-- :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>-->
<!-- <cropperFile-->
<!-- style="position: absolute; top: 10px;left: 10px;"-->
<!-- @getCropFile="getCropFile"-->
<!-- ></cropperFile>-->
</div>
<el-dialog :title="title" :visible.sync="open" width="1200px" append-to-body @opened="modalOpened" @close="closeDialog">
<!-- <div v-if="options.img && formName == 3" class="user-info-head"-->
<!-- :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">-->
<!-- <img v-bind:src="options.img" title="点击上传资质" class="img-zz"-->
<!-- :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }"/>-->
<!-- </div>-->
<el-dialog :title="title" :visible.sync="open" width="100%" append-to-body @opened="modalOpened"
@close="closeDialog">
<el-row>
<el-col :xs="24" :md="12" :style="{height: '500px'}">
<el-col :xs="24" :md="18" :style="{width: '630px',height: '891px'}">
<vue-cropper
ref="cropper"
:img="options.img"
@ -22,13 +45,13 @@
v-if="visible"
/>
</el-col>
<el-col :xs="24" :md="12" :style="{height: '500px'}">
<div class="zz-upload-preview" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">
<img :src="previews.url" :style="previews.img" />
</div>
</el-col>
<!-- <el-col :xs="24" :md="12" :style="{height: '500px'}">-->
<!-- <div class="zz-upload-preview" :style="{ width: options.autoCropWidth+ 'px', height: options.autoCropHeight + 'px' }">-->
<!-- <img :src="previews.url" :style="previews.img" />-->
<!-- </div>-->
<!-- </el-col>-->
</el-row>
<br />
<br/>
<el-row>
<el-col :lg="2" :md="2">
<el-upload action="#" :http-request="requestUpload" :show-file-list="false" :before-upload="beforeUpload">
@ -56,38 +79,39 @@
</el-row>
<el-row style="margin-top: 20px">
<el-col :lg="{span: 3, offset: -3}" :md="2">
<el-form-item label="长度:" class="query-form-item">
<el-input
size="small"
style="width: 100px;"
splaceholder="长度"
v-model="options.autoCropWidth"
></el-input>
</el-form-item>
</el-col>
<el-col :lg="{span: 3, offset: 2}" :md="2">
<el-form-item label="宽度:" class="query-form-item">
<el-input
size="small"
style="width: 100px;"
splaceholder="宽度"
v-model="options.autoCropHeight"
></el-input>
</el-form-item>
</el-col>
<!-- <el-col :lg="{span: 3, offset: -3}" :md="2">-->
<!-- <el-form-item label="长度:" class="query-form-item">-->
<!-- <el-input-->
<!-- size="small"-->
<!-- style="width: 100px;"-->
<!-- splaceholder="长度"-->
<!-- v-model="options.autoCropWidth"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- <el-col :lg="{span: 3, offset: 2}" :md="2">-->
<!-- <el-form-item label="宽度:" class="query-form-item">-->
<!-- <el-input-->
<!-- size="small"-->
<!-- style="width: 100px;"-->
<!-- splaceholder="宽度"-->
<!-- v-model="options.autoCropHeight"-->
<!-- ></el-input>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
</el-row>
</el-dialog>
</div>
</template>
<script>
import store from "@/store";
import { VueCropper } from "vue-cropper";
import { uploadFile } from "@/api/basic/uploadZz";
import {VueCropper} from "vue-cropper";
import {uploadFile} from "@/api/basic/uploadZz";
import cropperFile from "@/views/components/cropperFile";
import ElImageViewer from "element-ui/packages/image/src/image-viewer"
export default {
components: { VueCropper },
components: {VueCropper, cropperFile, ElImageViewer},
props: {
formName: {
type: Object,
@ -112,12 +136,36 @@ export default {
original: true,
img: this.inputQuery.filePath, //
autoCrop: false, //
autoCropWidth: 200, //
autoCropHeight: 200, //
autoCropWidth: 630, //
autoCropHeight: 891, //
fixedBox: false, //
filename: ''
},
previews: {}
imgList: [],
imgViewerVisible: false,
crap: true,
previews: {},
show: true,
//
fixed: false,
//
fixedNumber: [1, 2],
//
info: true,
// canScale
canScale: true,
// infoTrue true false :
infoTrue: true,
// maxImgSize
maxImgSize: 2000,
// enlarge
enlarge: 1,
// mode
mode: 'contain',
};
},
methods: {
@ -158,6 +206,20 @@ export default {
};
}
},
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;
});
},
//
uploadImg() {
this.$refs.cropper.getCropBlob(data => {
@ -182,32 +244,70 @@ export default {
//
closeDialog() {
this.visible = false;
}
},
showImgViewer() {
this.imgViewerVisible = true;
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'hidden';
document.addEventListener("touchmove", m, false); //
},
closeImgViewer() {
this.imgViewerVisible = false;
const m = (e) => {
e.preventDefault()
};
document.body.style.overflow = 'auto';
document.removeEventListener("touchmove", m, true);
},
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;
//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;
}
//.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 {

@ -0,0 +1,197 @@
<template>
<div class="upfile">
<div>
<el-button type="primary" icon="el-icon-plus" size="small" @click="getCropImg"></el-button>
</div>
<!-- <div v-else class="addFileImg">-->
<!-- <img :src="imgBase64">-->
<!-- </div>-->
<!-- <div v-else class="addFileImg" @click="getCropImg">-->
<!-- <img :src="imgBase64">-->
<!-- </div>-->
<!--截图区域-->
<div class="CropDialogVisible" v-show="isCropDialogVisible">
<div class="CropDialog-main" style="height: 80vh;position: relative;">
<div class="CropDialog-close" @click="isCropDialogVisible = false">×</div>
<cropper-img ref="cropImg"></cropper-img>
</div>
</div>
</div>
</template>
<script>
import cropperImg from './cropperImg.vue'
export default {
name: "upfile",
props: ["type", "imgUrl"],
created() {
console.log(this.imgUrl);
if (this.imgUrl) {
this.imgBase64 = this.imgUrl
this.filedisabled = false
}
},
data() {
return {
imgBase64: '',
//
isCropDialogVisible: false,
cropFile: '',
isAddFile: true
};
},
components: {
cropperImg
},
methods: {
getCropImg() {
let that = this
this.$refs.cropImg.setCropImg()
setTimeout(function () {
that.isCropDialogVisible = true
}, 500)
},
getCropApi(data) {
console.log(data);
// this.imgBase64 = base64
this.isCropDialogVisible = false
this.isAddFile = false
this.$emit("getCropFile", data)
}
}
};
</script>
<style lang="scss" scoped>
.CropDialogVisible {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(0, 0, 0, .4);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
.CropDialog-main {
width: 80%;
height: 80%;
background: #ffffff;
.CropDialog-close {
width: 40px;
height: 40px;
background: #666666;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
position: absolute;
top: -12px;
right: -20px;
font-size: 38px;
cursor: pointer;
}
}
}
.upfile {
width: 200px;
.addFileImg {
display: block;
width: 80px;
height: 80px;
background: #eeeeee;
cursor: pointer;
img {
display: block;
width: 100%;
height: 100%;
}
}
.addFile {
width: 80px;
height: 80px;
border: 1px dotted #64686B;
border-radius: 4px;
font-size: 35px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: #64686B;
}
}
.avatar-file {
text-align: center;
}
.avatar-file-text {
width: 240px;
border: 1px solid #dddddd;
border-radius: 3px;
line-height: 30px;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
font-weight: 500;
font-size: 14px;
white-space: nowrap;
padding: 0 5px;
cursor: pointer;
border-radius: 0;
}
.avatar-file-text img {
width: 16px;
height: 16px;
margin-right: 9px;
}
.avatar-file-imgbox {
height: 65px;
display: flex;
align-items: center;
justify-content: flex-start;
border: 1px solid #C0C4CC;
}
.filename {
font-size: 14px;
font-weight: 400;
text-decoration: underline;
text-align: left;
color: #1d73f6;
line-height: 22px;
margin-left: 10px;
}
.filename span {
width: 8px;
height: 8px;
// color: #ff0000;
font-size: 36px;
cursor: pointer;
}
</style>

@ -0,0 +1,285 @@
<template>
<div class="imgCrop-body">
<!--图片显示区域-->
<div class="imgCrop-box">
<!--原图-->
<div class="imgCrop-con">
<VueCropper
ref="cropper"
:img="option.img"
:output-size="option.size"
:output-type="option.outputType"
:info="true"
:full="option.full"
:fixed="fixed"
:fixed-number="fixedNumber"
:can-move="option.canMove"
:can-move-box="option.canMoveBox"
:fixed-box="option.fixedBox"
:original="option.original"
:auto-crop="option.autoCrop"
:auto-crop-width="option.autoCropWidth"
:auto-crop-height="option.autoCropHeight"
:center-box="option.centerBox"
@real-time="realTime"
:high="option.high"
@img-load="imgLoad"
mode="cover">
</VueCropper>
</div>
<!--截图-->
<div class="imgCrop-con imgCrop-con-preview" ref="imgCropPreviews">
<div class="show-preview"
:style="{'width': previews.w + 'px', 'height': previews.h + 'px', 'overflow': 'hidden', 'margin': '5px'}">
<div :style="previews.div">
<img :src="previews.url" :style="previews.img">
</div>
</div>
</div>
</div>
<!--操作区域-->
<div class="imgCrop-btn">
<div class="ict-query-button">
<label for="uploads" style="width:100%;height: 100%; ">上传</label>
<input
type="file"
id="uploads"
style="position:absolute; clip:rect(0 0 0 0);"
ref="uploadImg"
accept="image/png, image/jpeg, image/gif, image/jpg"
@change="uploadImg($event, 1)"
>
</div>
<div class="ict-query-button" v-if="!crap" @click="startCrop"></div>
<div class="ict-query-button" v-else @click="stopCropAndSave"></div>
<div class="ict-query-button" @click="changeScale(100)"></div>
<div class="ict-query-button" @click="changeScale(-100)"></div>
<div class="ict-query-button" @click="clearCrop"></div>
<div class="ict-query-button" @click="refreshCrop"></div>
<div class="ict-query-button" @click="rotateLeft">90</div>
<div class="ict-query-button" @click="rotateRight">90</div>
</div>
</div>
<!--到底啦=======================================================-->
</template>
<script>
import {VueCropper} from "vue-cropper";
import {uploadFile} from "@/api/basic/uploadZz";
export default {
name: "cropperImgComponents",
components: {VueCropper},
data() {
return {
crap: true,
previews: {},
option: {
//
img: '',
//
size: 1,
// propsfull
full: false,
//
outputType: 'png',
//
canMove: true,
//
fixedBox: false,
//
original: false,
//
canMoveBox: true,
//
autoCrop: true,
//
//
autoCropWidth: 444,
//
autoCropHeight: 629,
//
centerBox: false,
// dpr
high: true,
filename: "temp.jpg"
},
show: true,
//
fixed: false,
//
fixedNumber: [1, 2],
//
info: true,
// canScale
canScale: true,
// infoTrue true false :
infoTrue: true,
// maxImgSize
maxImgSize: 2000,
// enlarge
enlarge: 1,
// mode
mode: 'contain'
}
},
mounted() {
},
methods: {
setCropImg() {
this.$refs.uploadImg.click()
this.crap = true
},
//
uploadImg(e, num) {
var file = e.target.files[0]
this.file = file
console.log(file);
if (file.size / 1024 / 1024 > 5) {
this.$message.info("上传文件不超过5M");
return;
}
if (!/\.(jpg|png|JPG|PNG)$/.test(file.name)) {
this.$message.info('图片类型必须是jpg,png中的一种')
return false
}
var reader = new FileReader()
reader.onload = (e) => {
let data
if (typeof e.target.result === 'object') {
// Array Bufferblob base64
data = window.URL.createObjectURL(new Blob([e.target.result]))
} else {
data = e.target.result
}
if (num === 1) {
this.option.img = data
} else if (num === 2) {
this.example2.img = data
}
this.option.filename = file.name;
}
// base64
// reader.readAsDataURL(file)
// blob
reader.readAsArrayBuffer(file)
},
imgLoad(msg) {
console.log(msg)
this.previews.url = msg.url
},
//
realTime(data) {
this.previews = data
this.$emit('', this.previews)
console.log(data)
},
//
startCrop() {
this.crap = true
this.$refs.cropper.startCrop()
},
//&
stopCropAndSave() {
this.crap = false
this.$refs.cropper.stopCrop()
// this.$refs.cropper.getCropData((data) => {
// this.base64ToFile(data, 'cropFile')
// })
debugger
this.$refs.cropper.getCropBlob(data => {
debugger
let formData = new FormData();
console.log(this.option.filename)
formData.append("file", data, this.option.filename);
formData.append("type", "image2");
this.$parent.getCropApi(formData)
});
},
//
clearCrop() {
this.$refs.cropper.clearCrop()
this.crap = false
},
//
changeScale(num) {
num = num || 1
this.$refs.cropper.changeScale(num)
},
//
refreshCrop() {
this.$refs.cropper.refresh()
this.crap = false
},
//
rotateLeft() {
this.$refs.cropper.rotateLeft()
},
//
rotateRight() {
this.$refs.cropper.rotateRight()
},
//base64ToFile
base64ToFile(urlData, fileName) {
var arr = urlData.split(','), mime = arr[0].match(/:(.*?);/)[1],
bstr = atob(arr[1]), n = bstr.length, u8arr = new Uint8Array(n);
while (n--) {
u8arr[n] = bstr.charCodeAt(n);
}
let imgFile = new File([u8arr], fileName, {type: mime});
this.$parent.getCropApi(imgFile, urlData)
},
}
}
</script>
<style lang="scss" scoped>
.imgCrop-body {
width: 100%;
height: 100%;
overflow: hidden;
//
.imgCrop-box {
width: 100%;
height: calc(100% - 100px);
display: flex;
justify-content: center;
align-items: center;
.imgCrop-con {
width: calc(50% - 20px);
height: calc(100% - 20px);
margin: 10px;
&.imgCrop-con-preview {
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMzTjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/AgBVhF/0PAH6/D/HkDxOGAAAAAElFTkSuQmCC");
}
}
}
//
.imgCrop-btn {
width: 100%;
height: 50px;
margin-top: 20px;
display: flex;
justify-content: center;
> div {
margin: 0 10px;
}
}
}
</style>
Loading…
Cancel
Save