Commit 78c9198d authored by jingnan's avatar jingnan 👀

验收单查看附件不展示问题修改

parent 00caed48
......@@ -68,9 +68,13 @@ export default {
}
},
watch: {
value: function(newForm, oldForm) {
if (newForm) {
this.$set(this.form, 'objFileLinks', newForm)
value: {
immediate: true,
deep: true,
handler(newForm, oldForm) {
if (newForm) {
this.$set(this.form, 'objFileLinks', newForm)
}
}
},
'form.objFileLinks': function(newForm, oldForm) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment