Commit 78c9198d authored by jingnan's avatar jingnan 👀

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

parent 00caed48
...@@ -68,9 +68,13 @@ export default { ...@@ -68,9 +68,13 @@ export default {
} }
}, },
watch: { watch: {
value: function(newForm, oldForm) { value: {
if (newForm) { immediate: true,
this.$set(this.form, 'objFileLinks', newForm) deep: true,
handler(newForm, oldForm) {
if (newForm) {
this.$set(this.form, 'objFileLinks', newForm)
}
} }
}, },
'form.objFileLinks': function(newForm, oldForm) { '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