/** * Address * @cloud */ export interface AddressProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 地址图标 */ icon: string; /** * 收货人姓名 */ name: string; /** * 收货人电话 */ mobilephone: string; /** * 收货人地址 */ address: string; /** * 收货人详细地址 */ detail: string; /** * 收货地址列表 */ url: string; /** * 支持编辑 */ editable: boolean; /** * receiver/address哪个权重大优先展示 */ highWeight: string; }