Vue.component('consultation-list', {
template: `
-
文章标题:{{list.title}}
发送时间:{{list.fsrq}}
`,
data: function() {
return {
guidanceList: "",
curPage:1
}
},
props:["guidanceData"],
methods: {
viewDetail: function(id) {
top.layer.open({
type: 2,
maxmin: true,
area: ['600px', '360px'],
shadeClose: true,
content: 'ddd'
});
}
},
watch:{
consultaData:function(val){
this.guidanceList=this.guidanceData;
}
},
mounted: function() {
this.$emit('init-data', this.curPage);
}
})