Parameters
Parameter Name | Type | Value | Required | Description |
---|
name | String | | Yes | Name of the product |
url | String | | No | Redirect link for the product (opens in a new page). If empty, link cannot be clicked |
imgUrl | String | | No | Image URL of the product. If empty, image will not be displayed |
params | Object | | No | Parameter list for the product |
params.text | String | | No | Parameter text |
params.color | String | | No | Color value of the parameter in hexadecimal format (e.g., #ff0000) |
params.fold | Boolean | | No | Whether the text should be bold |
params.break | Boolean | | No | Whether to break the line |
params.size | Number | Default 12 | No | Font size |
Example
{
type: "product",
data: {
content: {
name: "Apple iPhone X (A1903) 64GB Space Gray Mobile Unicom 4G Phone",
url: "https://item.jd.com/6748052.html",
imgUrl: "http://img12.360buyimg.com/n1/s450x450_jfs/t10675/253/1344769770/66891/92d54ca4/59df2e7fN86c99a27.jpg",
params: [{
text: "¥6999.00",
color: "#FF0000",
fold: false,
break: false,
size: 12
},{
text: "Additional ¥30 for orders over ¥1999"
}]
}
}
}