index.vue 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <!-- 血小板-->
  2. <template>
  3. <div class="main-contain">
  4. <div class="position">
  5. <bread-crumb :crumbs="crumbs"></bread-crumb>
  6. </div>
  7. <div class="app-container">
  8. <div class="page_patientControlAnalysis">
  9. <el-tabs v-model="activeName" @tab-click="handleClick" >
  10. <el-tab-pane label="统计全部(KTV)" name="first">
  11. <keep-alive>
  12. <all_ktv v-if="activeName == 'first'"></all_ktv>
  13. </keep-alive>
  14. </el-tab-pane>
  15. <el-tab-pane label="统计全部(URR)" name="second">
  16. <keep-alive>
  17. <all_urr v-if="activeName == 'second'"></all_urr>
  18. </keep-alive>
  19. </el-tab-pane>
  20. <el-tab-pane label="统计个人(KTV)" name="third">
  21. <keep-alive>
  22. <p_ktv v-if="activeName == 'third'"></p_ktv>
  23. </keep-alive>
  24. </el-tab-pane>
  25. <el-tab-pane label="统计个人(URR)" name="four">
  26. <keep-alive>
  27. <p_urr v-if="activeName == 'four'"></p_urr>
  28. </keep-alive>
  29. </el-tab-pane>
  30. </el-tabs>
  31. </div>
  32. </div>
  33. </div>
  34. </template>
  35. <script>
  36. import echarts from 'echarts'
  37. import BreadCrumb from '@/xt_pages/components/bread-crumb'
  38. import plateletsall from './plateletsall'
  39. import plateletsalone from './plateletsalone.vue'
  40. import All_ktv from './all_ktv.vue'
  41. import All_urr from './all_urr.vue'
  42. import P_ktv from './p_ktv.vue'
  43. import P_urr from './p_urr.vue'
  44. export default {
  45. name:'thyroidGland',
  46. components: {
  47. P_urr,
  48. P_ktv,
  49. All_urr,
  50. All_ktv,
  51. BreadCrumb,
  52. },
  53. data() {
  54. return {
  55. activeName: 'first'
  56. }
  57. },
  58. methods:{
  59. handleClick(tab, event) {
  60. console.log(tab, event);
  61. }
  62. }
  63. }
  64. </script>
  65. <style lang="scss" scoped>
  66. // .page_patientControlAnalysis {
  67. // .pointTitle {
  68. // font-size: 13px;
  69. // }
  70. // .chartTitle {
  71. // font-size: 16px;
  72. // font-weight: bold;
  73. // color: #000000;
  74. // }
  75. // .point {
  76. // width: 13px;
  77. // height: 13px;
  78. // background: linear-gradient(
  79. // 0deg,
  80. // rgba(169, 224, 243, 1),
  81. // rgba(159, 189, 252, 1)
  82. // );
  83. // border-radius: 7px;
  84. // margin-right: 8px;
  85. // }
  86. // .pointTitle {
  87. // font-size: 13px;
  88. // }
  89. // }
  90. </style>
  91. <style lang="scss">
  92. // .page_patientControlAnalysis {
  93. // .el-form-item {
  94. // margin-bottom: 0;
  95. // }
  96. // .cell {
  97. // text-align: center;
  98. // }
  99. // ::-webkit-scrollbar {
  100. // height: 15px !important;
  101. // }
  102. // }
  103. </style>