/** * Talkseller * @cloud */ export interface TalksellerProps { /** * 组件 fields 数据 */ fields: FieldsType; } export interface FieldsType { /** * 类型数组 */ values: StringType[]; /** * 卖家花名 */ sellerNick: string; /** * 手机号码 */ phone: string; /** * 联系Option */ options: OptionType[]; } export interface StringType { } export interface OptionType { /** * btnCode */ btnId: string; /** * 对应IconUrl */ iconUrl: string; /** * 类型phone/callWW/link */ type: string; /** * 文案 */ title: string; /** * 值(可能是电话号码之类的) */ value: string; /** * 支持复制 */ copy: boolean; /** * tokenApi */ tokenApi: string; }