export function getDividerData() { return { id: '', type: 'divider', title: '分割线', property: { height: 40, line_type: 'solid', // dotted 虚线 color: '#FF0000', width: 920, }, }; } // 线条样式 export const lineTypeList = [ { string: '实线', value: 'solid' }, { string: '虚线', value: 'dashed' }, { string: '点状', value: 'dotted' }, { string: '波浪线', value: 'wavy' }, { string: '不显示', value: 'none' }, ];