血透系统pad前端

RecordPage.vue 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. <template>
  2. <div>
  3. <van-row class="top_row">
  4. <van-col :span="9">
  5. <div>
  6. <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
  7. </div>
  8. </van-col>
  9. <van-col :span="6">
  10. <div class="department">
  11. <ul>
  12. <li style="position: relative;" :class="index == 0? 'active':'' " @click="ClickTab(0)">
  13. {{'候诊区'}}
  14. <span class="redpoint" v-if="un_read_wait_num">{{un_read_wait_num > 99 ? un_read_wait_num+'+':un_read_wait_num}}</span>
  15. </li>
  16. <li style="position: relative;" :class="index == 1? 'active':'' " @click="ClickTab(1)">
  17. {{'透析区'}}
  18. <span class="redpoint" v-if="un_read_dialysis_num">{{un_read_dialysis_num > 99 ? un_read_dialysis_num+'+':un_read_dialysis_num}}</span>
  19. </li>
  20. </ul>
  21. </div>
  22. </van-col>
  23. <van-col :span="9">
  24. <router-link to="/add_urgent_schedule">
  25. <van-button size="small" type="info" class="add_schedule_btn">临时排班</van-button>
  26. </router-link>
  27. <div class="search">
  28. <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" class="field">
  29. <i class="iconfont" slot="left-icon">&#xe741;</i>
  30. <van-button slot="button" size="small" type="info" style="border: none;" @click="searchWithKeyword">搜索
  31. </van-button>
  32. </van-field>
  33. </div>
  34. </van-col>
  35. </van-row>
  36. <!-- <div class="top">
  37. <div class="hospital">
  38. <span class="title"> {{ $store.getters.user.org.org_short_name }} </span>
  39. </div>
  40. <div class="department">
  41. <ul>
  42. <li v-for="(item,i) in ['候诊室','透析区']" :key="i" :class="index == i? 'active':'' " @click="ClickTab(i)" >{{item}}</li>
  43. </ul>
  44. </div>
  45. <div class="search">
  46. <van-field v-model="search_input" ref="search_field" placeholder="透析号/姓名" style="background-color: #ebf1f7; height: 0.6rem; line-height: 0.6rem; padding: 0 0 0 10px; border-radius: 30px;">
  47. <i class="iconfont" slot="left-icon">&#xe741;</i>
  48. <van-button slot="button" size="small" type="info" style="border: none;" @click="searchWithKeyword">搜索</van-button>
  49. </van-field>
  50. </div>
  51. <van-button size="small" type="info">临时排班</van-button>
  52. </div> -->
  53. <div class="area">
  54. <waiting-area v-show="index==0" title="候诊区" :search_keyword="search_keyword"></waiting-area>
  55. <dialysis-area v-show="index==1" title="透析区" :search_keyword="search_keyword"
  56. @clear_search_keyword="clearKeyword"></dialysis-area>
  57. </div>
  58. </div>
  59. </template>
  60. <script>
  61. import DialysisArea from './DialysisArea'
  62. import WaitingArea from './WaitingArea'
  63. import {Popover} from 'vux'
  64. import {getDialysisScheduals, getWaitingScheduals} from '@/api/dialysis'
  65. import {parseTime} from '@/utils/index'
  66. import {getDialysisOrWaitSelectedConfig} from '@/utils/data_config'
  67. export default {
  68. name: 'RecordPage',
  69. props: {
  70. un_read_wait_num: {
  71. type: Number,
  72. },
  73. un_read_dialysis_num: {
  74. type: Number,
  75. }
  76. },
  77. data () {
  78. return {
  79. index: 1,
  80. search_input: '',
  81. search_keyword: '',
  82. scheduals: [],
  83. advice_groups: [],
  84. unReadWaitNum: 0,
  85. unReadDialysisNum: 0,
  86. }
  87. },
  88. components: {
  89. DialysisArea,
  90. WaitingArea,
  91. Popover
  92. // Group,
  93. // Cell
  94. },
  95. methods: {
  96. ClickTab: function (tabIndex) {
  97. this.index = tabIndex
  98. },
  99. searchWithKeyword: function () {
  100. this.$refs.search_field.blur()
  101. this.search_keyword = this.search_input
  102. },
  103. clearKeyword: function () {
  104. this.search_input = ''
  105. this.search_keyword = ''
  106. },
  107. }, created () {
  108. var index = getDialysisOrWaitSelectedConfig()
  109. console.log(index)
  110. if (index != null){
  111. this.index = index
  112. }
  113. }
  114. }
  115. </script>
  116. <style style="stylesheet/scss" lang="scss" scoped>
  117. .top_row {
  118. font-size: 0.3rem;
  119. padding: 0.3rem 0.3rem;
  120. border-bottom: 1px #e5e5e5 solid;
  121. display: flex;
  122. align-items: center;
  123. }
  124. .title {
  125. font-size: 0.34rem;
  126. font-weight: 600;
  127. color: $title-color;
  128. }
  129. .department {
  130. text-align: center;
  131. ul {
  132. li {
  133. float: left;
  134. font-size: 0.36rem;
  135. margin: 0 0.2rem;
  136. height: 0.64rem;
  137. line-height: 0.64rem;
  138. padding: 0 0.3rem;
  139. color: $title-color;
  140. &.active {
  141. background: $main-color;
  142. color: #fff;
  143. border-radius: 30px;
  144. }
  145. }
  146. }
  147. }
  148. .add_schedule_btn {
  149. margin-left: 10px;
  150. float: right;
  151. background-color: #ff7978;
  152. border: none;
  153. }
  154. .redpoint{
  155. display:inline-block;
  156. height:20px;
  157. width:20px;
  158. line-height:18px;
  159. text-align:center;
  160. font-size:0.8em;
  161. border-radius:20px;
  162. color:#fff;
  163. background:#F56C6C;
  164. position: absolute;
  165. top: -8px;
  166. right: -8px;
  167. border: 1px solid #fff;
  168. }
  169. </style>