/** * Switchaddress * @cloud */ export interface SwitchaddressProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * icon地址 */ iconUrl: string; /** * 描述 */ desc: string; /** * 收货人姓名 */ name: string; /** * 收货人详细地址 */ value: string; /** * 手机号码 */ mobilephone: string; /** * deliverId */ deliverId: string; /** * 是否可选 */ isOptional: String | Boolean; /** * 配置选项 */ options: OptionType[]; } export interface OptionType { /** * fullName */ fullName: string; /** * mobile */ mobile: string; /** * provinceName */ provinceName: string; /** * cityName */ cityName: string; /** * areaName */ areaName: string; /** * townName */ townName: string; /** * addressDetail */ addressDetail: string; }