hookehuyr

fix 删掉用不到的组件引用

...@@ -20,7 +20,7 @@ import IdentityField from '@/components/IdentityField/index.vue' ...@@ -20,7 +20,7 @@ import IdentityField from '@/components/IdentityField/index.vue'
20 import NumberField from '@/components/NumberField/index.vue' 20 import NumberField from '@/components/NumberField/index.vue'
21 import DesField from '@/components/DesField/index.vue' 21 import DesField from '@/components/DesField/index.vue'
22 import DividerField from '@/components/DividerField/index.vue' 22 import DividerField from '@/components/DividerField/index.vue'
23 -import VideoField from '@/components/VideoField/index.vue' 23 +// import VideoField from '@/components/VideoField/index.vue'
24 import MarqueeField from '@/components/MarqueeField/index.vue' 24 import MarqueeField from '@/components/MarqueeField/index.vue'
25 import ContactField from '@/components/ContactField/index.vue' 25 import ContactField from '@/components/ContactField/index.vue'
26 import RuleField from '@/components/RuleField/index.vue' 26 import RuleField from '@/components/RuleField/index.vue'
...@@ -151,10 +151,10 @@ export function createComponentType(data) { ...@@ -151,10 +151,10 @@ export function createComponentType(data) {
151 item.name = item.key; 151 item.name = item.key;
152 item.component = DividerField; 152 item.component = DividerField;
153 } 153 }
154 - if (item.component_props.tag === 'video') { 154 + // if (item.component_props.tag === 'video') {
155 - item.name = item.key; 155 + // item.name = item.key;
156 - item.component = VideoField; 156 + // item.component = VideoField;
157 - } 157 + // }
158 if (item.component_props.tag === 'marquee') { 158 if (item.component_props.tag === 'marquee') {
159 item.name = item.key; 159 item.name = item.key;
160 item.component = MarqueeField; 160 item.component = MarqueeField;
......