|
1
2
3
4
5
6
7
8
9
|
<template>
<component
:is="comp"
:formData="formData"
ref="compModel"
v-if="comp">
</component>
</template>
<script>
|
|
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;
|
|
21
|
}
|
|
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);
|
|
31
|
}
|
|
32
|
}, 200)
|
|
33
34
|
},
}
|
|
35
|
}
|
|
36
|
</script>
|