# 多图模块
多图模块为多张图片提供了丰富的布局。
多图模块不支持配置宽高比和裁剪部位,默认为居中裁剪。
# 字段列表
| 字段 | 是否必填 | 类型 | 描述 | 示例 |
|---|---|---|---|---|
| type | 是 | 字符串 | type 为 EImageList ,标志该模块为多图模块 | "EImageList" |
| images | 是 | 字符串数组 | 图片链接或图片资源的 mediaId 所组成的列表 | ["store://lALPDetfThtGS74eIA", "store://lALPDetfThtGS74eIA"] |
| preview | 否 | 布尔值 | 图片是否可点击预览 | true |
# json示例
{
"type": "EImageList",
"images": [
"https://img0.baidu.com/it/u=639424590,2670674099&fm=253&fmt=auto&app=138&f=JPEG?w=500&h=602",
"https://img1.baidu.com/it/u=4188902469,2197915529&fm=253&fmt=auto&app=120&f=JPEG?w=600&h=334",
"https://img1.baidu.com/it/u=2574436934,3271535834&fm=253&fmt=auto&app=120&f=JPEG?w=500&h=296",
],
"preview": true,
}