import { WpageCompsBean } from './wpage-comps-bean'; /** * 微页面 */ export class WpageBean { /** * 加密码Id */ wpageId : string = ''; /** * 标题 */ title : string = '微页面标题'; /** * 页面描述 (用户通过微信分享给朋友时,会自动显示页面描述) */ descr : string = ''; /** * 背影颜色 (灰色) */ backgroundColor : string = 'rgb(249, 249, 249)'; /** * 封面图片key */ picKey : string = '' ; /** * 显示的封面图 */ picUrl : string = ''; /** * 微页面的类型 @common:0:普通页面 @homePage:1:首页 */ wpageTypeEnum : string = ''; /** * 备注 */ remark : string = ''; /** * 组件列表 */ compList : Array> = [] ; constructor() { } }