import { UIComponent } from './component' /** Form Component */ export declare class componentMallOrder extends UIComponent { /** * 商品数据 */ dataList:Array<{ /** 图片路径 */ thumPath:string /** 订单编号 */ orderNo:string /** 状态 */ status:string /** 商品标题 */ title:string /** 带单位价格 */ price:string, /** 带单位积分 */ point:string, /** 支付金额信息 */ paymentValue:string /** 商品数量 */ total:number }> }