Vue.component('follow-list', { template: ``, data: function() { return { eduList: "", curPage:1 } }, props:["eduData"], methods: { viewDetail: function(id) { top.layer.open({ type: 2, maxmin: true, title: '健康教育文章详情', area: ['1000px', '650px'], shadeClose: true, moveOut:true, btn:'返回', success: function(layero){ layero.find('.layui-layer-btn').css({'text-align': 'center','border-top': '1px solid #ececec','padding-top': '7.5px'}); layero.find('.layui-layer-btn').find('a').addClass("layui-btn").css({background: '#f96565',color: '#fff',width: '100px',border: 'none', height: '34px','line-height':'22px',padding: '6px 12px','font-size': '14px'}); }, content: '../html/lay_gui_article_detail.html' }); } }, watch:{ eduData:function(val){ this.eduList=this.eduData; } }, mounted: function() { this.$emit('init-data', this.curPage); } })