Vue.component('consultation-list', {
template: `
-
{{list.patientName}}{{list.czrq}}
咨询问题:{{list.symptoms}}
`,
data: function() {
return {
chatList: "",
curPage:1
}
},
props:["consultaData"],
methods: {
viewDetail: function(id) {
top.layer.open({
type: 2,
maxmin: true,
area: ['600px', '360px'],
shadeClose: true,
content: 'ddd'
});
}
},
watch:{
consultaData:function(val){
this.chatList=this.consultaData;
}
},
mounted: function() {
this.$emit('init-data', this.curPage);
}
})