|
@@ -240,7 +240,9 @@ export default {
|
|
|
uni.showLoading()
|
|
|
res.tempFilePaths.forEach(async item => {
|
|
|
let data = await uploadImgFull(item)
|
|
|
- this.imageList.push(data)
|
|
|
+ if (data && data.url) {
|
|
|
+ this.imageList.push(data)
|
|
|
+ }
|
|
|
})
|
|
|
uni.hideLoading()
|
|
|
},
|
|
@@ -256,7 +258,9 @@ export default {
|
|
|
success: async res => {
|
|
|
uni.showLoading()
|
|
|
let data = await uploadImgFull(res.tempFilePath)
|
|
|
- this.imageList.push(data)
|
|
|
+ if (data && data.url) {
|
|
|
+ this.imageList.push(data)
|
|
|
+ }
|
|
|
uni.hideLoading()
|
|
|
},
|
|
|
fail: err => {
|