血透系统pad前端

DialysisTab.vue 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <div class="fixedBox">
  3. <div class="nav">
  4. <ul>
  5. <li
  6. v-for="(item, i) in [
  7. '长期透析处方',
  8. '透析记录',
  9. '排班信息',
  10. '宣教信息'
  11. ]"
  12. :key="i"
  13. :class="index == i ? 'active' : ''"
  14. @click="ClickTab(i)"
  15. >{{ item }}</li>
  16. </ul>
  17. </div>
  18. <div class="tab-content">
  19. <long-table v-show="index == 0" title="长期透析处方"></long-table>
  20. <record-table v-show="index == 1" title="透析记录"></record-table>
  21. <!--<advice-table v-show="index==2" title="医嘱信息"></advice-table>-->
  22. <schedul-table v-show="index == 2" class="排班信息"></schedul-table>
  23. <mission-table v-show="index == 3" class="宣教信息"></mission-table>
  24. </div>
  25. </div>
  26. </template>
  27. <script>
  28. import LongTable from "./LongTable";
  29. import SchedulTable from "./SchedulTable";
  30. import RecordTable from "./RecordTable";
  31. import AdviceTable from "./AdviceTable";
  32. import MissionTable from "./MissionTable";
  33. export default {
  34. name: "DialysisTab",
  35. data() {
  36. return {
  37. index: 0
  38. };
  39. },
  40. components: {
  41. LongTable,
  42. SchedulTable,
  43. RecordTable,
  44. AdviceTable,
  45. MissionTable
  46. },
  47. methods: {
  48. ClickTab: function(tabIndex) {
  49. this.index = tabIndex;
  50. }
  51. }
  52. };
  53. </script>
  54. <style style="stylesheet/scss" lang="scss" scoped>
  55. .fixedBox {
  56. padding-top: 38px;
  57. // background: #fff;
  58. min-height: calc(100vh - 64px);
  59. // @media only screen and (min-width: 376px) and (max-width: 737px) {
  60. // padding-top: 46px;
  61. // }
  62. @media only screen and (min-width: 768px) {
  63. padding-top: 82px;
  64. }
  65. // @media only screen and (min-width: 813px) and (max-width: 1024px) {
  66. // padding-top: 74px;
  67. // }
  68. .nav {
  69. border-bottom: 1px #e5e5e5 solid;
  70. position: fixed;
  71. top: 40px;
  72. @media only screen and (min-width: 768px) {
  73. top: 63px;
  74. }
  75. // @media only screen and (min-width: 813px) and (max-width: 1024px) {
  76. // top: 64px;
  77. // }
  78. // @media only screen and (min-width: 376px) and (max-width: 668px) {
  79. // top: 50px;
  80. // }
  81. right: 0;
  82. z-index: 66;
  83. left: 0;
  84. background: #fff;
  85. ul {
  86. width: 80%;
  87. margin: 0 auto;
  88. @include box-sizing;
  89. @include display-flex;
  90. @include align-items-center;
  91. @include text-align;
  92. @include justify-content-between;
  93. li {
  94. font-size: 0.45rem;
  95. float: left;
  96. color: $pgh-color;
  97. padding: 0.3rem 0;
  98. cursor: pointer;
  99. }
  100. .active {
  101. position: relative;
  102. &::before {
  103. width: 100%;
  104. height: 2px;
  105. color: $main-color;
  106. position: absolute;
  107. bottom: 0;
  108. left: 0;
  109. content: "";
  110. background: $main-color;
  111. }
  112. }
  113. }
  114. }
  115. }
  116. </style>