血透系统pad前端

statOrder.vue 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. <template>
  2. <div class="plate-box">
  3. <h2 class="title border">
  4. <span class="line"></span>
  5. <p>{{title}}</p>
  6. <span class="line"></span>
  7. </h2>
  8. <table class="table">
  9. <tr>
  10. <th width="12%">开嘱医生</th>
  11. <th width="18%">开始时间</th>
  12. <th width="31%">医嘱内容</th>
  13. <th width="18.6%">执行时间</th>
  14. <th width="10.5%">执行护士</th>
  15. <th v-if="template_id != 6" width="9.4%">核对护士</th>
  16. </tr>
  17. <template v-for="(group) in advice_groups">
  18. <tr v-for="(advice, i) in group.advices" :key="advice.id">
  19. <td v-if="i == 0" :rowspan="group.advices.length">{{doctor_map[advice.advice_doctor] != undefined ? doctor_map[advice.advice_doctor].name : ""}}</td>
  20. <td v-if="i == 0" :rowspan="group.advices.length">{{parseTime(advice.start_time, "{m}-{d} {h}:{i}")}}</td>
  21. <td :class="advice.parent_id == 0 ? 'advice_content' : 'subadvice_content'">
  22. <span>{{advice.advice_name }}</span>
  23. <!-- <span>{{advice.drug_spec}}{{advice.drug_spec_unit}} * {{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span> -->
  24. <span v-if="advice.advice_desc">{{advice.advice_desc}}{{advice.drug_spec_unit}}</span>
  25. <span v-if="advice.prescribing_number">{{advice.prescribing_number}}{{advice.prescribing_number_unit}}</span>
  26. <span v-if="advice.single_dose">单次用量{{advice.single_dose}}{{advice.single_dose_unit}}</span>
  27. <span v-if="advice.parent_id == 0">{{advice.delivery_way}}</span>
  28. <span v-if="advice.parent_id == 0">{{advice.execution_frequency}}</span>
  29. <span v-if="advice.parent_id == 0&&advice.remark.length > 0">({{advice.remark}})</span>
  30. </td>
  31. <td>{{parseTime(advice.execution_time, "{m}-{d} {h}:{i}")}}</td>
  32. <td>{{advice.execution_staff != 0 ? (doctor_map[advice.execution_staff] != undefined ? doctor_map[advice.execution_staff].name : "") : ""}}</td>
  33. <td>{{advice.checker != 0 ? (doctor_map[advice.checker] != undefined ? doctor_map[advice.checker].name : "") : ""}}</td>
  34. </tr>
  35. </template>
  36. </table>
  37. <div class="NoData" v-show="advice_groups.length == 0">
  38. <img style="margin-top: 50px; margin-bottom: 50px" src="@/assets/login/data.jpg" alt>
  39. </div>
  40. </div>
  41. </template>
  42. <script>
  43. import { parseTime } from '@/utils';
  44. export default {
  45. name: 'statOrder',
  46. data () {
  47. return {
  48. title: '临时医嘱 ',
  49. template_id: 0,
  50. tableDate: []
  51. }
  52. },
  53. props: {
  54. doctor_map: {
  55. type: Object
  56. },
  57. advice_groups: {
  58. type: Array,
  59. default: () => {
  60. return []
  61. }
  62. }
  63. },
  64. created () {
  65. this.template_id = this.$store.getters.user.template_info.template_id
  66. },
  67. methods: {
  68. setAdvices (advices) {
  69. if (advices == null) {
  70. advices = []
  71. }
  72. this.tableDate.splice(0, this.tableDate.length)
  73. this.tableDate.push(...advices)
  74. },
  75. parseTime (time, layout) {
  76. if (time == 0) {
  77. return '';
  78. }
  79. return parseTime(time, layout)
  80. },
  81. createMedicalOrder (row) {
  82. if (row.parent_id > 0) {
  83. var spliceIndex = -1
  84. for (let index = this.tableDate.length - 1; ; index--) {
  85. if (this.tableDate[index].parent_id === row.parent_id) {
  86. spliceIndex = index
  87. break;
  88. } else if (this.tableDate[index].id === row.parent_id) {
  89. spliceIndex = index
  90. break;
  91. }
  92. }
  93. if (spliceIndex > -1) {
  94. spliceIndex += 1
  95. if (spliceIndex === this.tableDate.length) {
  96. this.tableDate.push(row)
  97. } else {
  98. var swapData = this.tableDate.splice(spliceIndex)
  99. this.tableDate.push(row)
  100. this.tableDate = this.tableDate.concat(swapData)
  101. }
  102. }
  103. } else {
  104. this.tableDate.unshift(row)
  105. }
  106. },
  107. delMedicalOrder (row) {
  108. if (row.parent_id > 0) {
  109. var rslen = this.tableDate.length
  110. for (let i = 0; i < rslen; i++) {
  111. if (this.tableDate[i].id == row.id) {
  112. this.tableDate.splice(i, 1)
  113. break;
  114. }
  115. }
  116. } else {
  117. var resetTableData = this.tableDate
  118. this.tableDate = []
  119. var that = this
  120. var rslen = resetTableData.length
  121. for (let i = 0; i < rslen; i++) {
  122. if (
  123. resetTableData[i].id != row.id &&
  124. resetTableData[i].parent_id != row.id
  125. ) {
  126. that.tableDate.push(resetTableData[i])
  127. }
  128. }
  129. }
  130. },
  131. executionMedicalOrder (row) {
  132. var alen = this.tableDate.length
  133. for (let index = 0; index < alen; index++) {
  134. if (this.tableDate[index].id == row.id) {
  135. this.tableDate[index].execution_state = 1
  136. this.tableDate[index].execution_staff = row.execution_staff
  137. this.tableDate[index].execution_time = row.execution_time
  138. this.tableDate[index].checker = row.checker
  139. break;
  140. }
  141. }
  142. }
  143. }
  144. }
  145. </script>
  146. <style rel="stylesheet/scss" lang="scss" scoped>
  147. .table {
  148. width: 100%;
  149. overflow: hidden;
  150. font-size: 0.34rem;
  151. text-align: center;
  152. border: $border-color;
  153. tr {
  154. padding: 0;
  155. margin: 0;
  156. padding: 0.1rem 0;
  157. th {
  158. background: $main-color;
  159. border: none;
  160. color: #fff;
  161. padding: 0;
  162. margin: 0;
  163. height: 0.88rem;
  164. line-height: 0.88rem;
  165. font-weight: normal;
  166. }
  167. .advice_content {
  168. text-align: left;
  169. padding-left: 5px;
  170. padding-right: 5px;
  171. // background: #eff6fc;
  172. }
  173. .subadvice_content {
  174. text-align: left;
  175. padding-left: 25px;
  176. padding-right: 5px;
  177. // background: #fafcfe;
  178. }
  179. }
  180. }
  181. </style>