new Vue({ el: '#app', data: { isAgent: false, innerTabs: [{title:'咨询',href:'../html/consultation.html'}, {title:'随访',href:'../html/follow-up.html'}, {title:'代预约',href:'../html/toBeReserved.html'}, {title:'健康指导',href:'../html/guidance.html'}, {title:'健康教育',href:'../html/education.html'}, {title:'统计',href:'../html/census.html'} ], activeidx: "" }, mounted: function() { var query = GetRequest(); this.activeidx = query.tabIdex || "0" } })