纯图推荐组件
## 纯图推荐
只展示图片和图片标题,有1张图,2张图,3张图,4张图,四种展现形式。
参数说明:
1. ```arrayList``` 图片列表

代码示例
````
<tl-card v-if="bySpot.length>0" titleImage="https://oss.zhangyubk.com/title1.png" moreUrl="sdf">
<tl-ctlist :arrayList="bySpot"></tl-ctlist>
</tl-card>
````
注意事项:
```arrayList``` 的数据结构如下,具体参考 【必游景点列表】 接口
````
[
{
"id":1,
"name":"洱海",
"image":"https://oss.zhangyubk.com/erhai.png",
"weight":0,
"is_recom":1
},
{
"id":2,
"name":"双廊古镇",
"image":"https://oss.zhangyubk.com/item1.png",
"weight":0,
"is_recom":1
},
{
"id":3,
"name":"苍山",
"image":"https://oss.zhangyubk.com/item2.png",
"weight":0,
"is_recom":1
},
{
"id":4,
"name":"崇圣寺三塔",
"image":"https://oss.zhangyubk.com/item3.png",
"weight":0,
"is_recom":1
}
]
````