followup_tabs.html 652 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <link type="text/css" href="../../../css/bootstrap.min.css" />
  7. <link rel="stylesheet" href="../css/follow-up.css" />
  8. </head>
  9. <body>
  10. <ul class="followup-tab" id="app">
  11. <li :class="index==activeidx?'active':''" @click="activeidx=index" v-for="(list,index) in followUpTabs">
  12. <a :href="list.url" target="view_frame2" :data-index="index" v-text="list.name"></a>
  13. </li>
  14. </ul>
  15. <script type="text/javascript" src="../../../js/vue.js"></script>
  16. <script src="../../../js/jquery-2.2.4.js"></script>
  17. <script src="../js/followup-tabs.js"></script>
  18. </body>
  19. </html>