| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- import { EComponentType } from "@/consts/enum";
- export const DefaultWebsiteComponents = [
- {
- type: EComponentType.address,
- data: {
- address: "浙江省杭州市西湖区文一西路西溪首座b3座",
- latitude: 30.28809928894043,
- longitude: 120.07521057128906,
- name: "深圳小蓝本网络技术有限公司杭州总部",
- }
- },
- {
- type: EComponentType.title,
- data: {
- text: '产品服务',
- placeholder: '默认标题',
- layout: 'left'
- }
- },
- {
- type: EComponentType.media,
- data: {
- media: [],
- layout: 'mini',
- }
- },
- {
- type: EComponentType.media,
- data: {
- media: [],
- layout: 'mini',
- }
- },
- {
- type: EComponentType.media,
- data: {
- media: [],
- layout: 'mini',
- }
- },
- {
- type: EComponentType.title,
- data: {
- text: '客户案例',
- placeholder: '默认标题',
- layout: 'left'
- }
- },
- {
- type: EComponentType.link,
- data: {
- link: '',
- layout: 'left',
- poster: '',
- linkType: '',
- text: '客户案例1',
- placeholder: '默认链接',
- }
- },
- {
- type: EComponentType.link,
- data: {
- link: '',
- layout: 'left',
- poster: '',
- linkType: '',
- text: '客户案例2',
- placeholder: '默认链接',
- }
- },
- {
- type: EComponentType.title,
- data: {
- text: '关于我们',
- placeholder: '默认标题',
- layout: 'left'
- }
- },
- {
- type: EComponentType.media,
- data: {
- media: [],
- layout: 'mini',
- }
- },
- {
- type: EComponentType.text,
- data: {
- text: '企业简介 核心优势',
- placeholder: '点击编辑输入您的文本内容',
- layout: 'left'
- }
- },
- {
- type: EComponentType.title,
- data: {
- text: '核心团队',
- placeholder: '默认标题',
- layout: 'left'
- }
- },
- {
- type: EComponentType.bluebook,
- data: {
- values: [],
- layout: 'mini',
- }
- },
- {
- type: EComponentType.shiping,
- data: {
- layout: 'left',
- value: '',
- text: '视频号',
- placeholder: '视频号',
- }
- },
- {
- type: EComponentType.wechatArticle,
- data: {
- link: '',
- layout: 'left',
- poster: '',
- linkType: 'weixinOfficialAccountArticle',
- text: '公众号文章',
- placeholder: '公众号文章',
- }
- },
- ]
|