Vue.component('follow-list', { template: ``, data: function() { return { followUpList:[], curPage:1 } }, props:["followUpData"], methods: { viewDetail: function(id) { top.layer.open({ type: 2, maxmin: true, title:"随访详情", area: ['800px', '600px'], shadeClose: false, content: '../html/lay_followUp_detail.html?id='+id }); } }, watch:{ followUpData:function(val){ this.followUpList=this.followUpData; } }, mounted: function() { var divH = $("#tab-iframe",parent.document).height() - 75; $(".followup-list").slimScroll({ height: divH,color: '#666'}); } })