Blame view

ant-design-vue-jeecg/src/components/tools/DynamicNotice.vue 603 Bytes
肖超群 authored
1
2
3
4
5
6
7
8
9
<template>
  <component
    :is="comp"
    :formData="formData"
    ref="compModel"
    v-if="comp">
  </component>
</template>
<script>
肖超群 authored
10
11
12
13
14
15
16
17
18
19
20
export default {
  name: 'DynamicNotice',
  data() {
    return {
      compName: this.path
    }
  },
  computed: {
    comp: function () {
      if (!this.path) {
        return null;
肖超群 authored
21
      }
肖超群 authored
22
23
24
25
26
27
28
29
30
      return () => import(`@/views/${this.path}.vue`)
    }
  },
  props: ['path', 'formData'],
  methods: {
    detail() {
      setTimeout(() => {
        if (this.path) {
          this.$refs.compModel.view(this.formData);
肖超群 authored
31
        }
肖超群 authored
32
      }, 200)
肖超群 authored
33
34
    },
  }
肖超群 authored
35
}
肖超群 authored
36
</script>