record-tabs.js 540 B

123456789101112131415161718
  1. new Vue({
  2. el: '#app',
  3. data: {
  4. isAgent: false,
  5. innerTabs: [{title:'咨询',href:'../html/consultation.html'},
  6. {title:'随访',href:'../html/follow-up.html'},
  7. {title:'代预约',href:'../html/toBeReserved.html'},
  8. {title:'健康指导',href:'../html/guidance.html'},
  9. {title:'健康教育',href:'../html/education.html'},
  10. {title:'统计',href:'../html/census.html'}
  11. ],
  12. activeidx: ""
  13. },
  14. mounted: function() {
  15. var query = GetRequest();
  16. this.activeidx = query.tabIdex || "0"
  17. }
  18. })