Vue.component('education-list', { template: '', data: function() { return { eduList: "", curPage:1 } }, props:["eduData"], methods: { viewDetail: function(id) { top.layer.open({ type: 2, maxmin: true, title: '文章详情', area: ['1000px', '600px'], shadeClose: false, content: '../html/lay_edu_article_detail.html?articleId='+id }); } }, watch:{ eduData:function(val){ this.eduList=this.eduData; } }, mounted: function() { var divH = $("#tab-iframe",parent.document).height() - 75; $(".consultation-list").slimScroll({ height: divH,color: '#666'}); } })