vue+datav数据大屏
官方文档
http://datav.jiaminghi.com/guide/#用前必看
制作效果
遇到的问题
数据传输
board_info2: {
header: ["门店名称", "地址", "核销营业额"],
data: []
}
data需要传值,直接使用官方的,那么传递值给data后,轮播表是不会显示数据的
<dv-scroll-board
:config="board_info2
class="carousel_list2"
oddRowBGC="#fff"
style="width: 95%;margin: 0 auto;height: 75%"
/>
解决方法
<dv-scroll-board
:config="board_info2"
ref="scrollBoard"
class="carousel_list2"
oddRowBGC="#fff"
style="width: 95%;margin: 0 auto;height: 75%"
/>
加上 ref=“scrollBoard”
传值时使用 this.$refs[‘scrollBoard’].updateRows(this.board_info2.data)