血透系统pad前端

MsgTip.vue 6.0KB

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