hookehuyr

fix 删掉用不到的组件引用

......@@ -20,7 +20,7 @@ import IdentityField from '@/components/IdentityField/index.vue'
import NumberField from '@/components/NumberField/index.vue'
import DesField from '@/components/DesField/index.vue'
import DividerField from '@/components/DividerField/index.vue'
import VideoField from '@/components/VideoField/index.vue'
// import VideoField from '@/components/VideoField/index.vue'
import MarqueeField from '@/components/MarqueeField/index.vue'
import ContactField from '@/components/ContactField/index.vue'
import RuleField from '@/components/RuleField/index.vue'
......@@ -151,10 +151,10 @@ export function createComponentType(data) {
item.name = item.key;
item.component = DividerField;
}
if (item.component_props.tag === 'video') {
item.name = item.key;
item.component = VideoField;
}
// if (item.component_props.tag === 'video') {
// item.name = item.key;
// item.component = VideoField;
// }
if (item.component_props.tag === 'marquee') {
item.name = item.key;
item.component = MarqueeField;
......