|
@@ -199,7 +199,7 @@ export default {
|
|
|
this.oldData = res.data
|
|
|
this.remarkVal = res.data.reason
|
|
|
this.remarkVal2 = res.data.problemDescription
|
|
|
- this.imageList = res.data.image.split(',').map(url => ({ url }))
|
|
|
+ this.imageList = res.data?.image ? res.data.image.split(',').map(url => ({ url })) : []
|
|
|
}
|
|
|
})
|
|
|
.catch(res => {})
|
|
@@ -316,7 +316,7 @@ export default {
|
|
|
params.problemDescription = this.remarkVal2
|
|
|
}
|
|
|
|
|
|
- if (!this.remarkVal2) {
|
|
|
+ if (!this.imageList.length) {
|
|
|
return this.$toast('请上传环境照片')
|
|
|
} else {
|
|
|
params.image = this.imageList
|
|
@@ -360,7 +360,7 @@ export default {
|
|
|
params.problemDescription = this.remarkVal2
|
|
|
}
|
|
|
|
|
|
- if (!this.remarkVal2) {
|
|
|
+ if (!this.imageList.length) {
|
|
|
return this.$toast('请上传环境照片')
|
|
|
} else {
|
|
|
params.image = this.imageList
|