import { UIComponent } from './component' /** Form Component */ export declare class componentMallGoods extends UIComponent { /** * 商品数据 */ dataList:Array<{ /** 图片路径 */ src:string /** 是否为新品 */ new:boolean /** 是否为促销产品 */ promotion:boolean /** 标题 */ title:string, /** 带单位价格 */ price:string, /** 带单位积分 */ point:string /** 带单位原价 */ original:string /** 店铺名称 */ storeName:string }> /** 显示方式 */ type:'row' | 'col' }