提交 98ab27e5 编写于 作者: G gongzijian

Merge remote-tracking branch 'upstream/branch-1.0.2' into branch-1.0.2

<template> <template>
<div class="assist-dag-model"> <div class="assist-dag-model">
<template v-if="isView"> <template v-if="isView && isActive">
<m-variables-view></m-variables-view> <m-variables-view></m-variables-view>
</template> </template>
</div> </div>
...@@ -11,7 +11,8 @@ ...@@ -11,7 +11,8 @@
name: 'assist-dag-index', name: 'assist-dag-index',
data () { data () {
return { return {
isView: false isView: false,
isActive: true
} }
}, },
methods: { methods: {
...@@ -19,6 +20,15 @@ ...@@ -19,6 +20,15 @@
this.isView = !this.isView this.isView = !this.isView
} }
}, },
watch: {
'$route': {
deep: true,
handler () {
this.isActive = false
this.$nextTick(() => (this.isActive = true))
}
}
},
components: { mVariablesView } components: { mVariablesView }
} }
</script> </script>
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册