血透系统pad前端

LongAdviceSubMenu.vue 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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">长期医嘱推送</h1>
  8. <span @click="comfirm" class="success"
  9. >确定</span
  10. >
  11. </div>
  12. <div class="CheckBox">
  13. <ul>
  14. <li>
  15. <van-checkbox-group v-model="propsForm.result">
  16. <van-checkbox
  17. style="border-bottom: 1px #e5e5e5 solid;padding: 0 0.38rem"
  18. v-for="(advice, index) in propsForm.list"
  19. :key="index"
  20. :name="advice.id"
  21. >
  22. <div style="padding-top: 15px;padding-left: 10px">开嘱医生&nbsp;{{ getDoctorName(advice.advice_doctor) }}</div><br/>
  23. <div style="padding-left: 10px">开嘱时间&nbsp;{{ getTime(advice.created_time) }}</div><br/>
  24. <div style="padding-bottom: 15px;padding-left: 10px"> 医嘱内容&nbsp;{{getContent(advice)}}</div>
  25. </van-checkbox>
  26. </van-checkbox-group>
  27. </li>
  28. </ul>
  29. </div>
  30. </div>
  31. </template>
  32. <script>
  33. import {parseTime} from '@/utils'
  34. export default {
  35. name: 'LongAdviceSubMenu',
  36. created () {
  37. },
  38. data () {
  39. return {
  40. result: [],
  41. id: 0,
  42. selectName: ''
  43. }
  44. },
  45. props: {
  46. propsForm: {
  47. type: Object
  48. },
  49. visibility: {
  50. type: Boolean,
  51. default: false
  52. },
  53. },
  54. methods: {
  55. getDoctorName (doctor_id) {
  56. for (let i = 0; i < this.propsForm.operators.length; i++) {
  57. if (this.propsForm.operators[i].id == doctor_id) {
  58. return this.propsForm.operators[i].name
  59. }
  60. }
  61. }, getTime (val) {
  62. return parseTime(val, '{y}-{m}-{d} {h}:{i}')
  63. }, getContent (val) {
  64. let prescribing_number = ''
  65. let single_dose = ''
  66. if (val.prescribing_number > 0) {
  67. prescribing_number = val.prescribing_number + val.prescribing_number_unit
  68. }
  69. if (val.single_dose > 0) {
  70. single_dose = ' 单次用量 ' + val.single_dose + val.single_dose_unit
  71. }
  72. let name = ""
  73. if (val.child.length > 0){
  74. for (let i = 0 ; i < val.child.length; i++){
  75. if(val.child[i].prescribing_number > 0){
  76. val.child[i]['presc'] = val.child[i].prescribing_number + val.child[i].prescribing_number_unit
  77. }else{
  78. val.child[i]['presc'] = ''
  79. }
  80. if(val.child[i].single_dose > 0){
  81. val.child[i]['single'] = " "+' 单次用量 '+" "+val.child[i].single_dose + val.child[i].single_dose_unit
  82. }else{
  83. val.child[i]['single'] = ''
  84. }
  85. name = name+"▲"+val.child[i].advice_name+""
  86. + val.child[i].drug_spec
  87. + val.child[i].drug_spec_unit
  88. + val.child[i].presc
  89. + val.child[i].single
  90. }
  91. return val.advice_name +" "+ val.drug_spec+" "
  92. + val.drug_spec_unit
  93. + prescribing_number
  94. + " "+single_dose+" "+ " "+val.delivery_way+" "+ val.execution_frequency + val.remark +name
  95. } else {
  96. return val.advice_name +" "+ val.drug_spec+" "
  97. + val.drug_spec_unit
  98. + prescribing_number
  99. + " "+single_dose+" "+ " "+val.delivery_way+" "+ val.execution_frequency + val.remark
  100. }
  101. },
  102. cancle: function () {
  103. this.$emit('menu-cancle-three')
  104. },
  105. comfirm: function () {
  106. this.$emit('menu-comfirm-three', this.getValue())
  107. },
  108. getValue: function () {
  109. let form = {}
  110. let results = []
  111. for (let i = 0; i < this.propsForm.list.length; i++){
  112. for (let a = 0; a < this.propsForm.result.length; a++){
  113. if( this.propsForm.list[i].id == this.propsForm.result[a]){
  114. results.push(this.propsForm.list[i])
  115. }
  116. }
  117. }
  118. var obj5={}
  119. results = results.reduce((cur, next) => {
  120. obj5[next.id] ? '' : obj5[next.id] = true && cur.push(next)
  121. return cur
  122. }, [])
  123. results
  124. return results
  125. },
  126. },
  127. watch: {
  128. visibility (val) {
  129. //初始化数据操作
  130. }
  131. }
  132. }
  133. </script>
  134. <style style="stylesheet/scss" lang="scss" scoped>
  135. .optionsBox {
  136. background: #fff;
  137. max-height: 10rem;
  138. min-height: 5rem;
  139. @media only screen and (max-width: 812px) {
  140. min-height: 8rem !important;
  141. }
  142. ul {
  143. overflow-y: scroll;
  144. max-height: 9rem;
  145. li {
  146. height: 1.1rem;
  147. line-height: 1.1rem;
  148. border-bottom: 1px #e5e5e5 solid;
  149. padding: 0 0.38rem;
  150. font-size: 0.36rem;
  151. color: $title-color;
  152. }
  153. .tick {
  154. position: relative;
  155. &::before {
  156. content: "";
  157. display: inline-block;
  158. border: 2px solid $main-color;
  159. border-top-width: 0;
  160. border-right-width: 0;
  161. width: 0.3rem;
  162. height: 0.15rem;
  163. -webkit-transform: rotate(-50deg);
  164. position: absolute;
  165. top: 0.38rem;
  166. right: 0.44rem;
  167. }
  168. }
  169. }
  170. }
  171. .CheckBox {
  172. background: #fff;
  173. max-height: 6.8rem;
  174. min-height: 5rem;
  175. overflow-y: scroll;
  176. @media only screen and (max-width: 812px) {
  177. max-height: 8rem !important;
  178. min-height: 8rem !important;
  179. }
  180. ul {
  181. li {
  182. line-height: 1rem;
  183. }
  184. }
  185. }
  186. </style>