血透系统pad前端

statOrder.vue 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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 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.drug_spec">{{advice.drug_spec}}{{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. tableDate: [],
  50. };
  51. },
  52. props: {
  53. doctor_map: {
  54. type: Object
  55. },
  56. advice_groups: {
  57. type: Array,
  58. default: () => {
  59. return []
  60. }
  61. }
  62. },
  63. methods: {
  64. setAdvices(advices) {
  65. if (advices == null) {
  66. advices = [];
  67. }
  68. this.tableDate.splice(0, this.tableDate.length);
  69. this.tableDate.push(...advices);
  70. },
  71. parseTime(time, layout) {
  72. if (time == 0) {
  73. return "";
  74. }
  75. return parseTime(time, layout);
  76. },
  77. createMedicalOrder(row) {
  78. if (row.parent_id > 0) {
  79. var spliceIndex = -1;
  80. for (let index = this.tableDate.length - 1; ; index--) {
  81. if (this.tableDate[index].parent_id === row.parent_id) {
  82. spliceIndex = index;
  83. break;
  84. } else if (this.tableDate[index].id === row.parent_id) {
  85. spliceIndex = index;
  86. break;
  87. }
  88. }
  89. if (spliceIndex > -1) {
  90. spliceIndex += 1;
  91. if (spliceIndex === this.tableDate.length) {
  92. this.tableDate.push(row);
  93. } else {
  94. var swapData = this.tableDate.splice(spliceIndex);
  95. this.tableDate.push(row);
  96. this.tableDate = this.tableDate.concat(swapData);
  97. }
  98. }
  99. } else {
  100. this.tableDate.unshift(row);
  101. }
  102. },
  103. delMedicalOrder(row) {
  104. if (row.parent_id > 0) {
  105. var rslen = this.tableDate.length;
  106. for (let i = 0; i < rslen; i++) {
  107. if (this.tableDate[i].id == row.id) {
  108. this.tableDate.splice(i, 1);
  109. break;
  110. }
  111. }
  112. } else {
  113. var resetTableData = this.tableDate;
  114. this.tableDate = [];
  115. var that = this;
  116. var rslen = resetTableData.length;
  117. for (let i = 0; i < rslen; i++) {
  118. if (
  119. resetTableData[i].id != row.id &&
  120. resetTableData[i].parent_id != row.id
  121. ) {
  122. that.tableDate.push(resetTableData[i]);
  123. }
  124. }
  125. }
  126. },
  127. executionMedicalOrder(row) {
  128. var alen = this.tableDate.length;
  129. for (let index = 0; index < alen; index++) {
  130. if (this.tableDate[index].id == row.id) {
  131. this.tableDate[index].execution_state = 1;
  132. this.tableDate[index].execution_staff = row.execution_staff;
  133. this.tableDate[index].execution_time = row.execution_time;
  134. this.tableDate[index].checker = row.checker;
  135. break;
  136. }
  137. }
  138. }
  139. }
  140. };
  141. </script>
  142. <style rel="stylesheet/scss" lang="scss" scoped>
  143. .table {
  144. width: 100%;
  145. overflow: hidden;
  146. font-size: 0.34rem;
  147. text-align: center;
  148. border: $border-color;
  149. tr {
  150. padding: 0;
  151. margin: 0;
  152. padding: 0.1rem 0;
  153. th {
  154. background: $main-color;
  155. border: none;
  156. color: #fff;
  157. padding: 0;
  158. margin: 0;
  159. height: 0.88rem;
  160. line-height: 0.88rem;
  161. font-weight: normal;
  162. }
  163. .advice_content {
  164. text-align: left;
  165. padding-left: 5px;
  166. padding-right: 5px;
  167. // background: #eff6fc;
  168. }
  169. .subadvice_content {
  170. text-align: left;
  171. padding-left: 25px;
  172. padding-right: 5px;
  173. // background: #fafcfe;
  174. }
  175. }
  176. }
  177. </style>