|
|
|
@ -34,13 +34,8 @@ |
|
|
|
|
--> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<u-upload |
|
|
|
|
:fileList="photoList" |
|
|
|
|
@afterRead="afterRead" |
|
|
|
|
@delete="deletePic" |
|
|
|
|
name="1" |
|
|
|
|
multiple |
|
|
|
|
:maxCount="10"> |
|
|
|
|
<u-upload :fileList="photoList" @afterRead="afterRead" @delete="deletePic" name="1" multiple |
|
|
|
|
:maxCount="10"> |
|
|
|
|
<view class="photo_main_face_4 photo_full_blue_btn" style="margin-left: 24rpx;"> |
|
|
|
|
上传照片 |
|
|
|
|
</view> |
|
|
|
@ -171,6 +166,9 @@ |
|
|
|
|
show_2: false, |
|
|
|
|
show_3: false, |
|
|
|
|
photoList: [], |
|
|
|
|
uploadFiles:[], |
|
|
|
|
successFiles:[], |
|
|
|
|
errorFiles:[] |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
@ -227,52 +225,78 @@ |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
async afterRead(event) { |
|
|
|
|
var _this = this; |
|
|
|
|
let lists = [].concat(event.file); |
|
|
|
|
console.log(lists); |
|
|
|
|
|
|
|
|
|
var _this = this; |
|
|
|
|
let lists = [].concat(event.file); |
|
|
|
|
|
|
|
|
|
uni.showLoading({ |
|
|
|
|
title: '图片上传中', |
|
|
|
|
}); |
|
|
|
|
_this.uploadFiles = []; |
|
|
|
|
for (let i = 0; i < lists.length; i++) { |
|
|
|
|
var edetail =lists[i].url; |
|
|
|
|
let filePath = edetail; |
|
|
|
|
let _date = new Date(); |
|
|
|
|
let ext_name = filePath.substr(filePath.lastIndexOf('.')); |
|
|
|
|
let address = _date.getFullYear() + '' + (_date.getMonth() + 1) + '' + _date.getDate(); |
|
|
|
|
let fileName = address + _date.getTime() + ext_name; |
|
|
|
|
const img_info = await unit.getImgInfo(filePath); |
|
|
|
|
|
|
|
|
|
let { width, height } = img_info; |
|
|
|
|
let maxWidth = 2480; |
|
|
|
|
if (width > maxWidth) { |
|
|
|
|
let scale = Math.ceil(width / maxWidth); |
|
|
|
|
height = Math.ceil(height / scale); |
|
|
|
|
width = Math.ceil(maxWidth); |
|
|
|
|
} |
|
|
|
|
let compress_path = ''; |
|
|
|
|
compress_path = await unit.compressImg(filePath, { compressedWidth: width }).catch((res) => { |
|
|
|
|
console.log('上传压缩失败', err); |
|
|
|
|
}); |
|
|
|
|
compress_path = compress_path ? compress_path : filePath; |
|
|
|
|
console.log('&&&&&&&&&&',compress_path,fileName) ; |
|
|
|
|
_this.upload_img(compress_path, fileName); |
|
|
|
|
var edetail = lists[i].url; |
|
|
|
|
let filePath = edetail; |
|
|
|
|
let _date = new Date(); |
|
|
|
|
let ext_name = filePath.substr(filePath.lastIndexOf('.')); |
|
|
|
|
let address = _date.getFullYear() + '' + (_date.getMonth() + 1) + '' + _date.getDate(); |
|
|
|
|
let fileName = address + _date.getTime() + ext_name; |
|
|
|
|
const img_info = await unit.getImgInfo(filePath); |
|
|
|
|
|
|
|
|
|
let { |
|
|
|
|
width, |
|
|
|
|
height |
|
|
|
|
} = img_info; |
|
|
|
|
let maxWidth = 2480; |
|
|
|
|
if (width > maxWidth) { |
|
|
|
|
let scale = Math.ceil(width / maxWidth); |
|
|
|
|
height = Math.ceil(height / scale); |
|
|
|
|
width = Math.ceil(maxWidth); |
|
|
|
|
} |
|
|
|
|
let compress_path = ''; |
|
|
|
|
compress_path = await unit.compressImg(filePath, { |
|
|
|
|
compressedWidth: width |
|
|
|
|
}).catch((res) => { |
|
|
|
|
console.log('上传压缩失败', err); |
|
|
|
|
}); |
|
|
|
|
compress_path = compress_path ? compress_path : filePath; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
//_this.upload_img(compress_path, fileName); |
|
|
|
|
//上传 |
|
|
|
|
var upData = {filePath:compress_path,fileType:'image',scene:'user_max'}; |
|
|
|
|
// _this.$api.ossUpload(upData, function(res) { |
|
|
|
|
// console.log('ossUpload success', res); |
|
|
|
|
// if(res.code == 200){ |
|
|
|
|
// //_this.uploadFiles.push(res.data.file_url); |
|
|
|
|
// } |
|
|
|
|
// // var d = res.data; |
|
|
|
|
// // _this.info.avatar = d.file_url; |
|
|
|
|
// // _this.uploadImg = [{ |
|
|
|
|
// // url: _this.$api.ossurl(d.file_url) |
|
|
|
|
// // }];; |
|
|
|
|
// }, function(err) { |
|
|
|
|
// console.log('ossUpload fail', err); |
|
|
|
|
// }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
console.log('***************',_this.uploadFiles) |
|
|
|
|
}, |
|
|
|
|
uploadFilePromise(url) { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
async upload_img(filePath, fileName) { |
|
|
|
|
var _this =this; |
|
|
|
|
var _this = this; |
|
|
|
|
try { |
|
|
|
|
uni.showLoading({ |
|
|
|
|
title: '图片上传中', |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
const { file_url = '' } = await photoUploadFile(filePath, fileName,'user_avatar') |
|
|
|
|
|
|
|
|
|
const { |
|
|
|
|
file_url = '' |
|
|
|
|
} = await photoUploadFile(filePath, fileName, 'user_avatar') |
|
|
|
|
.finally(() => { |
|
|
|
|
uni.hideLoading(); |
|
|
|
|
}) |
|
|
|
@ -280,7 +304,7 @@ |
|
|
|
|
console.log('ossUploadFile==', res); |
|
|
|
|
uni.$u.toast('图片上传失败!!'); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!file_url) { |
|
|
|
|
uni.$u.toast('图片上传失败!!!!!'); |
|
|
|
|
return; |
|
|
|
@ -288,24 +312,24 @@ |
|
|
|
|
console.log('success upload') |
|
|
|
|
console.log(file_url); |
|
|
|
|
_this.info.avatar = file_url; |
|
|
|
|
_this.wxAvatar = [{url:ossurl(file_url, 'user_face')}]; |
|
|
|
|
_this.wxAvatar = [{ |
|
|
|
|
url: ossurl(file_url, 'user_face') |
|
|
|
|
}]; |
|
|
|
|
updateUserInfo(_this.info).then(res => { |
|
|
|
|
if (res.code != 200) { |
|
|
|
|
if (res.code != 200) { |
|
|
|
|
uni.$u.toast(res.msg); |
|
|
|
|
} |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
} else { |
|
|
|
|
store.commit('userInfo/set_user_info', _this.info); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
|
} catch (err) { |
|
|
|
|
console.log('图片上传失败', err); |
|
|
|
|
uni.$u.toast('上传照片失败~~'); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
loadData() { |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
|