#### 组件名称
horizontal-scroll-list

#### 解释：
横向滚动表格

#### 属性说明：
|属性名 | 类型 | 必填 | 默认值 |说明 |
|---|---|---|---|---|
|listDetail |Object |是|{}|渲染数据|
|lastTableBg |String |否|#fff|最后一行的背景颜色，需要配合lastColDif：true使用|
|lastTableColor |String |否|#666|最后一行的字体颜色，需要配合lastColDif：true使用|
|lastRowDif |Boolean |否|false|判断最后一行样式是否特殊|
|widthFlag |Array |否|[]|右侧滚动区域如果需要某一列为六字宽度，设置为1，其他为0|
|heightFlag |Array |否|[]|右侧滚动区域如果某一行需要展示为两行的高度则设置为1，其他为0|
|scrollAreaWidth |String |否|300px|右侧滚定区域的宽度|
|iconColor |String |否|#2b99ff|超出两行截断时提示icon的颜色|

#### 代码示例
swan:
```
<gov-horizontal-scroll-list
        last-col-dif="{{true}}"
        last-table-bg="#f5f5f5"
        list-detail="{{detail1}}">
    </gov-horizontal-scroll-list>
```
js:
```
Page({
    data: {
        detail: {
            title: ['项目', '项目', '项目'],
            content: [
                ['项目一', '项目二', '项目三', '项目四', '项目五', '项目六', '项目七', '项目八'],
                ['内容', '内容', '内容', '内容', '内容', '内容', '内容', '内容'],
                ['内容', '内容', '内容', '内容', '内容', '内容', '内容', '内容']
            ]
        }
    }
});
```
css:
```

```