血透系统pad前端

MsgTip.vue 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <div v-if="visibility" class="Dialog">
  3. <div class="DialogTit">
  4. <div class="back" @click="cancle()">
  5. <span class="iconfont">&#xe720; </span>返回
  6. </div>
  7. <h1 class="name">{{patient_prop.name}} [透析号 {{patient_prop.dialysis_no}} ]</h1>
  8. <span @click="comfirm" class="success" >确定</span
  9. >
  10. </div>
  11. <div class="DialogContent">
  12. <div class="item">
  13. <label class="name" for="txms">本次透析日期</label>
  14. <div class="content">
  15. <span class="text" id="txms"> {{dialysis_date}}</span>
  16. </div>
  17. </div>
  18. <div class="item">
  19. <label class="name" for="txms">透前体重(kg)</label>
  20. <div class="content">
  21. <span class="text" id="txms">{{predialysis.weight_before}}</span>
  22. </div>
  23. </div>
  24. <div class="item">
  25. <label class="name" for="txms">干体重(kg)</label>
  26. <div class="content">
  27. <span class="text" id="txms">{{predialysis.dry_weight}}</span>
  28. </div>
  29. </div>
  30. <div class="item">
  31. <label class="name" for="txms">衣物重(kg)</label>
  32. <div class="content">
  33. <span class="text" id="txms">{{predialysis.additional_weight}}</span>
  34. </div>
  35. </div>
  36. <div class="item">
  37. <label class="name" for="txms">体重增加(kg)</label>
  38. <div class="content">
  39. <span class="text" id="txms">{{prescription_prop.dewater_amount}}</span>
  40. </div>
  41. </div>
  42. <div class="item">
  43. <label class="name" for="txms">透后体重(kg)</label>
  44. <div class="content">
  45. <span class="text" id="txms">{{record.weight_after}}</span>
  46. </div>
  47. </div>
  48. <div class="item">
  49. <label class="name" for="txms">体重减少(kg)</label>
  50. <div class="content">
  51. <span class="text" id="txms">{{record.weight_loss}}</span>
  52. </div>
  53. </div>
  54. <div class="item">
  55. <label class="name" for="txms">上次透后体重(kg)</label>
  56. <div class="content">
  57. <span class="text" id="txms">{{predialysis.weight_after_last_transparency}}</span>
  58. </div>
  59. </div>
  60. </div>
  61. </div>
  62. </template>
  63. <script>
  64. import {parseTime} from '@/utils'
  65. export default {
  66. name: 'LongAdviceSubMenu',
  67. created () {
  68. },
  69. data () {
  70. return {
  71. result: [],
  72. id: 0,
  73. selectName: ''
  74. }
  75. },
  76. props: {
  77. predialysis: {
  78. type: Object
  79. },
  80. visibility: {
  81. type: Boolean,
  82. default: false
  83. },
  84. last_predialysis: {
  85. type: Object
  86. },
  87. record: {
  88. type: Object
  89. },
  90. last_record: {
  91. type: Object
  92. },
  93. patient_prop: {
  94. type: Object
  95. },
  96. prescription_prop: {
  97. type: Object
  98. },
  99. },
  100. computed: {
  101. dialysis_date: function () {
  102. return parseTime(this.$route.query.date, '{y}/{m}/{d}')
  103. }
  104. },
  105. methods: {
  106. cancle: function () {
  107. this.$emit('menu-msg-tip')
  108. },
  109. comfirm: function () {
  110. this.$emit('menu-msg-tip')
  111. },
  112. getValue: function () {
  113. let form = {}
  114. let results = []
  115. for (let i = 0; i < this.propsForm.list.length; i++){
  116. for (let a = 0; a < this.propsForm.result.length; a++){
  117. if( this.propsForm.list[i].id == this.propsForm.result[a]){
  118. results.push(this.propsForm.list[i])
  119. }
  120. }
  121. }
  122. var obj5={}
  123. results = results.reduce((cur, next) => {
  124. obj5[next.id] ? '' : obj5[next.id] = true && cur.push(next)
  125. return cur
  126. }, [])
  127. results
  128. return results
  129. },
  130. },
  131. watch: {
  132. visibility (val) {
  133. //初始化数据操作
  134. }
  135. }
  136. }
  137. </script>
  138. <style style="stylesheet/scss" lang="scss" scoped>
  139. .optionsBox {
  140. background: #fff;
  141. max-height: 10rem;
  142. min-height: 5rem;
  143. @media only screen and (max-width: 812px) {
  144. min-height: 8rem !important;
  145. }
  146. ul {
  147. overflow-y: scroll;
  148. max-height: 9rem;
  149. li {
  150. height: 1.1rem;
  151. line-height: 1.1rem;
  152. border-bottom: 1px #e5e5e5 solid;
  153. padding: 0 0.38rem;
  154. font-size: 0.36rem;
  155. color: $title-color;
  156. }
  157. .tick {
  158. position: relative;
  159. &::before {
  160. content: "";
  161. display: inline-block;
  162. border: 2px solid $main-color;
  163. border-top-width: 0;
  164. border-right-width: 0;
  165. width: 0.3rem;
  166. height: 0.15rem;
  167. -webkit-transform: rotate(-50deg);
  168. position: absolute;
  169. top: 0.38rem;
  170. right: 0.44rem;
  171. }
  172. }
  173. }
  174. }
  175. .CheckBox {
  176. background: #fff;
  177. max-height: 6.8rem;
  178. min-height: 5rem;
  179. overflow-y: scroll;
  180. @media only screen and (max-width: 812px) {
  181. max-height: 8rem !important;
  182. min-height: 8rem !important;
  183. }
  184. ul {
  185. li {
  186. line-height: 1rem;
  187. }
  188. }
  189. }
  190. </style>