移除图文添加watch 修复 图片图片已经添加还提示空的问题

This commit is contained in:
hupeng
2020-05-27 19:07:00 +08:00
parent 8304f45256
commit 8f98906502

View File

@ -68,11 +68,6 @@ export default {
}
},
watch: {
'form.imageArr': function(val) {
if (val) {
this.form.imageInput = val.join(',')
}
}
},
methods: {
cancel() {
@ -80,6 +75,12 @@ export default {
},
doSubmit() {
this.loading = true
if(this.form.imageArr.length > 0){
this.form.imageInput = this.form.imageArr.join(',')
}else{
this.form.imageInput = ''
}
if (this.isAdd) {
this.doAdd()
} else this.doEdit()