Unverified Commit 8311b8be authored by hymzcn's avatar hymzcn Committed by GitHub
Browse files

Merge pull request #331 from hymzcn/branch-1.0.2

子流程返回父流程全局变量问题修复
parents 70a44bd0 8c937549
Loading
Loading
Loading
Loading
+13 −3
Original line number Diff line number Diff line
<template>
  <div class="assist-dag-model">
    <template v-if="isView">
    <template v-if="isView && isActive">
      <m-variables-view></m-variables-view>
    </template>
  </div>
@@ -11,7 +11,8 @@
    name: 'assist-dag-index',
    data () {
      return {
        isView: false
        isView: false,
        isActive: true
      }
    },
    methods: {
@@ -19,6 +20,15 @@
        this.isView = !this.isView
      }
    },
    watch: {
      '$route': {
        deep: true,
        handler () {
          this.isActive = false
          this.$nextTick(() => (this.isActive = true))
        }
      }
    },
    components: { mVariablesView }
  }
</script>