血透系统pad前端

SideBar.vue 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <template>
  2. <div class="sideColumn">
  3. <div class="column">
  4. <!-- <div class="head"><img :src="$store.getters.user.org.org_logo" alt=""></div> -->
  5. <ul class="sidebar">
  6. <li style="position: relative;" :class="active_index == 0 ? 'active' : ''">
  7. <router-link to="/main">
  8. <span class="iconfont">&#xe6e6;</span>
  9. <p>记录</p>
  10. </router-link>
  11. <span
  12. class="redpoint"
  13. v-if="total_read_dot"
  14. >{{total_read_dot > 99?total_read_dot+'+':total_read_dot}}</span>
  15. </li>
  16. <li :class="active_index == 1 ? 'active' : ''">
  17. <router-link to="/monitoring">
  18. <span class="iconfont">&#xe6f5;</span>
  19. <p>监控</p>
  20. </router-link>
  21. </li>
  22. <li :class="active_index == 2 ? 'active' : ''">
  23. <router-link to="/advice">
  24. <span class="iconfont">&#xe6f4;</span>
  25. <p>医嘱</p>
  26. </router-link>
  27. </li>
  28. <li :class="active_index == 3 ? 'active' : ''">
  29. <router-link to="/my">
  30. <span class="iconfont">&#xe715;</span>
  31. <p>我的</p>
  32. </router-link>
  33. </li>
  34. </ul>
  35. </div>
  36. </div>
  37. </template>
  38. <script>
  39. export default {
  40. name: "SideBar",
  41. props: {
  42. active_index: {
  43. type: Number,
  44. default: 0
  45. },
  46. total_read_dot: {
  47. type: Number,
  48. default: 0
  49. }
  50. }
  51. };
  52. </script>
  53. <style style="stylesheet/scss" lang="scss" scoped>
  54. .redpoint {
  55. display: inline-block;
  56. height: 20px;
  57. width: 20px;
  58. line-height: 20px;
  59. text-align: center;
  60. font-size: 0.74em;
  61. border-radius: 20px;
  62. color: #fff;
  63. background: #f56c6c;
  64. position: absolute;
  65. top: -5px;
  66. right: -15px;
  67. }
  68. .sideColumn {
  69. // float: left;
  70. // width: 1.58rem;
  71. background: #f5f8fb;
  72. // height: 100%;
  73. // border-right: 1px solid rgba(193, 193, 193, 0.8);
  74. border-top: 1px solid rgba(193, 193, 193, 0.8);
  75. // position: fixed;
  76. height: 50px;
  77. z-index: 999;
  78. .column {
  79. .head {
  80. @include display-flex;
  81. @include align-items-center;
  82. @include text-align;
  83. @include justify-content-center;
  84. margin: 0.5rem auto 0.7rem auto;
  85. width: 1rem;
  86. height: 1rem;
  87. overflow: hidden;
  88. border-radius: 50%;
  89. img {
  90. width: 100%;
  91. height: auto;
  92. display: block;
  93. }
  94. }
  95. .sidebar {
  96. @include display-flex;
  97. @include align-items-center;
  98. // @include flex-direction;
  99. @include text-align;
  100. flex-direction: row;
  101. justify-content: space-around;
  102. height: 50px;
  103. padding: 0;
  104. li {
  105. height: 100%;
  106. display: flex;
  107. align-items: center;
  108. // padding: 0 0 0.8rem 0;
  109. a {
  110. color: #a8b3ba;
  111. display: inline-block;
  112. padding: 0;
  113. margin: 0;
  114. @media only screen and (min-width: 768px) {
  115. display: flex;
  116. }
  117. p {
  118. font-size: 0.32rem;
  119. margin-top: 0.05rem;
  120. }
  121. .iconfont {
  122. font-size: 0.52rem;
  123. display: inline-block;
  124. }
  125. }
  126. &.active {
  127. a {
  128. color: $main-color;
  129. .iconfont {
  130. color: $main-color;
  131. }
  132. }
  133. }
  134. }
  135. }
  136. }
  137. }
  138. </style>