1
0
mirror of https://github.com/PanJiaChen/vue-element-admin.git synced 2025-08-10 12:01:57 +08:00

Merge 3716590b2fda2bee531563b5d26611a6798d0c79 into 6858a9ad67483025f6a9432a926beb9327037be3

This commit is contained in:
Mrzls999 2024-10-24 21:20:27 +08:00 committed by GitHub
commit 0c12d607fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -225,6 +225,7 @@ export default {
} }
}, },
data() { data() {
let fileName
const { imgFormat, langType, langExt, width, height } = this const { imgFormat, langType, langExt, width, height } = this
let isSupported = true let isSupported = true
const allowImgFormat = ['jpg', 'png'] const allowImgFormat = ['jpg', 'png']
@ -478,6 +479,7 @@ export default {
}, },
// //
setSourceImg(file) { setSourceImg(file) {
this.fileName = file.name.substr(0,file.name.lastIndexOf('.'))
const fr = new FileReader() const fr = new FileReader()
fr.onload = e => { fr.onload = e => {
this.sourceImgUrl = fr.result this.sourceImgUrl = fr.result
@ -773,7 +775,8 @@ export default {
fmData.append( fmData.append(
field, field,
data2blob(createImgUrl, mime), data2blob(createImgUrl, mime),
field + '.' + imgFormat //field + '.' + imgFormat
this.fileName + '.' + imgFormat
) )
// //
if (typeof params === 'object' && params) { if (typeof params === 'object' && params) {