/** * Deliverymethod * @cloud */ export interface DeliverymethodProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 描述 */ desc: string; /** * 价格 */ price: string; /** * 已选中的值 */ value: string; /** * 引导选择的文本 */ title: string; /** * 可选的列表 */ options: OptionType[]; } export interface OptionType { /** * 描述 */ title: string; /** * 价格 */ price: string; /** * 已选中的值 */ disable: boolean | string; /** * 引导选择的文本 */ isChecked: boolean | string; }