轮播图组件
## 轮播图
多功能可查看画廊的轮播图组件
参数说明:
1. ```bannerList``` 轮播图集合数组
2. ```dotTheme``` dot圆点展示的方式,```spot```是小圆点,```munbe```是数字,默认是```spot```
3. ```autoplay``` 是否自动轮播,默认不自动轮播
4. ```isOpen``` 是否显示查看全部,默认不显示

代码示例
````
<tl-banner :bannerList="bannerList" dotTheme="munbe" isOpen></tl-banner>
````
注意事项:
```bannerList``` 的数据结构如下,具体参考 【轮播图列表】 接口
````
[
{
"id":1,
"type":0,
"param":null,
"image":"https://oss.zhangyubk.com/banner1.png"
},
{
"id":2,
"type":1,
"param":null,
"image":"https://oss.zhangyubk.com/banner1.png"
},
{
"id":3,
"type":2,
"param":"https://www.baidu.com",
"image":"https://oss.zhangyubk.com/banner1.png"
},
{
"id":4,
"type":3,
"param":null,
"image":"https://oss.zhangyubk.com/banner1.png"
}
]
````