Commit 78c9198d authored by jingnan's avatar jingnan 👀

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

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