Vue.component('reserved-list', {
template: `
`,
data: function() {
return {
toBeReservedList: "",
curPage:1
}
},
props:["reserveData"],
methods: {
viewDetail:function(){
top.layer.open({
type: 2,
maxmin: true,
area: ['1000px', '650px'],
shadeClose: false,
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_detail_reserved.html'
});
}
},
watch:{
reserveData:function(){
this.toBeReservedList = this.reserveData;
}
},
mounted: function() {
var divH = $("#tab-iframe",parent.document).height() - 75;
$(".consultation-list").slimScroll({ height: divH,color: '#666'});
}
})