import { WpageCompsBusiLinkBean } from './wpage-comps-busi-link-bean'; /** * 标题组件 */ export class WpageCompsTextBean { /** * 文本标题Id */ textId !: string; /** * 文字内容 */ content : string = ''; /** * 字体 */ fontFamily : string = ''; /** * 字体大小 */ fontSize : number = 14; /** * 粗细 normal:400:正常字体 bold:500:加粗字体 */ fontWeight : number = 400; /** * 颜色 */ color : string = ''; /** * 文本对齐 @left:0:左对齐 @center:1:居中 @right:2:右对齐 @justify:3:两端对齐 */ textAlign : string = 'left'; /** * 字体斜体样式 @normal:0:正常的字体 @italic:1:斜体 @oblique:2:倾斜的字体 */ fontStyle : number = 0 ; /** * 文本修饰,如划线 @none:0:默认标准的文本 @underline:1:文本下的一条线 @overline:2:文本上的一条线 @line_through:3:穿过文本下的一条线 @blink:4:闪烁的文本 @inherit:5:从父元素继承 text-decoration 属性的值 */ textDecoration : number = 0; /** * 字间距 (单位:px) */ letterSpacing !: number; /** * 行间距 (单位:倍) */ lineHeight !: number; /** * 段间距 (单位:px) */ margin : number = 0 ; /** * 业务链接 */ busiLink !: WpageCompsBusiLinkBean; }