123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- <template>
- <div class="sideColumn">
- <div class="column">
- <!-- <div class="head"><img :src="$store.getters.user.org.org_logo" alt=""></div> -->
- <ul class="sidebar">
- <li style="position: relative;" :class="active_index == 0 ? 'active' : ''">
- <router-link to="/main">
- <span class="iconfont"></span>
- <p>记录</p>
- </router-link>
- <span
- class="redpoint"
- v-if="total_read_dot"
- >{{total_read_dot > 99?total_read_dot+'+':total_read_dot}}</span>
- </li>
- <li :class="active_index == 1 ? 'active' : ''">
- <router-link to="/monitoring">
- <span class="iconfont"></span>
- <p>监控</p>
- </router-link>
- </li>
- <li :class="active_index == 2 ? 'active' : ''">
- <router-link to="/advice">
- <span class="iconfont"></span>
- <p>医嘱</p>
- </router-link>
- </li>
- <li :class="active_index == 3 ? 'active' : ''">
- <router-link to="/my">
- <span class="iconfont"></span>
- <p>我的</p>
- </router-link>
- </li>
- </ul>
- </div>
- </div>
- </template>
-
- <script>
- export default {
- name: "SideBar",
- props: {
- active_index: {
- type: Number,
- default: 0
- },
- total_read_dot: {
- type: Number,
- default: 0
- }
- }
- };
- </script>
-
- <style style="stylesheet/scss" lang="scss" scoped>
- .redpoint {
- display: inline-block;
- height: 20px;
- width: 20px;
- line-height: 20px;
- text-align: center;
- font-size: 0.74em;
- border-radius: 20px;
- color: #fff;
- background: #f56c6c;
- position: absolute;
- top: -5px;
- right: -15px;
- }
- .sideColumn {
- // float: left;
- // width: 1.58rem;
- background: #f5f8fb;
- // height: 100%;
- // border-right: 1px solid rgba(193, 193, 193, 0.8);
- border-top: 1px solid rgba(193, 193, 193, 0.8);
- // position: fixed;
- height: 50px;
- z-index: 999;
- .column {
- .head {
- @include display-flex;
- @include align-items-center;
- @include text-align;
- @include justify-content-center;
- margin: 0.5rem auto 0.7rem auto;
- width: 1rem;
- height: 1rem;
- overflow: hidden;
- border-radius: 50%;
- img {
- width: 100%;
- height: auto;
- display: block;
- }
- }
- .sidebar {
- @include display-flex;
- @include align-items-center;
- // @include flex-direction;
- @include text-align;
- flex-direction: row;
- justify-content: space-around;
- height: 50px;
-
- padding: 0;
- li {
- height: 100%;
- display: flex;
- align-items: center;
- // padding: 0 0 0.8rem 0;
- a {
- color: #a8b3ba;
- display: inline-block;
- padding: 0;
- margin: 0;
- @media only screen and (min-width: 768px) {
- display: flex;
- }
- p {
- font-size: 0.32rem;
- margin-top: 0.05rem;
- }
- .iconfont {
- font-size: 0.52rem;
- display: inline-block;
- }
- }
- &.active {
- a {
- color: $main-color;
- .iconfont {
- color: $main-color;
- }
- }
- }
- }
- }
- }
- }
- </style>
-
|