scanning_insEnd.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. <template>
  2. <view class="Scanning_insEnd">
  3. <view class="Scanning_top" v-if="infoDATA.status==200">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1">
  9. 操作成功
  10. </view>
  11. </view>
  12. </view>
  13. <view class="Scanning_top" v-if="infoDATA.status==10005||infoDATA.status==100018||infoDATA.status==10004||infoDATA.status==100021||infoDATA.status==100031||infoDATA.status==500">
  14. <view class="Scanning_top_icon">
  15. <text class="cubeic-close icon_transport transport-shibai"></text>
  16. </view>
  17. <view class="Scanning_top_text">
  18. <view class="text1">
  19. 操作失败
  20. </view>
  21. </view>
  22. </view>
  23. <view class="Scanning_cont" v-if="infoDATA.status==200&&type=='specimenPlan'||infoDATA.status==200&&type=='specimen'">
  24. </view>
  25. <view class="Scanning_cont" v-if="infoDATA.status==200&&type=='patientTransport'||type=='inspect'">
  26. <view>请将患者送往目标科室.</view>
  27. <view v-if="infoDATA.patient">
  28. 患者姓名 : {{infoDATA.patient||'-'}}
  29. </view>
  30. <view v-if="infoDATA.residenceNo">
  31. 住院号 : {{infoDATA.residenceNo||'-'}}
  32. </view>
  33. <view v-if="infoDATA.deptName">
  34. 住院科室 : {{infoDATA.deptName||'-'}}
  35. </view>
  36. <view v-if="infoDATA.bedNum">
  37. 床号 : {{infoDATA.bedNum||'-'}}
  38. </view>
  39. </view>
  40. <view class="Scanning_cont" v-if="infoDATA.status==200&&type=='drugsBag'">
  41. 请将药品送往目标科室.
  42. </view>
  43. <view class="Scanning_cont" v-if="infoDATA.status!=200">
  44. <view>
  45. {{infoDATA.msg}}
  46. </view>
  47. </view>
  48. <view class="foot_btn">
  49. <view class="btn3" @click="showAlert()">
  50. 知道了
  51. </view>
  52. </view>
  53. </view>
  54. </template>
  55. <script>
  56. import {
  57. get,
  58. post,
  59. webHandle
  60. } from "../../http/http.js";
  61. export default {
  62. data() {
  63. return {
  64. infoDATA: [],
  65. type: ""
  66. };
  67. },
  68. methods: {
  69. // 知道了
  70. showAlert() {
  71. uni.navigateTo({
  72. url: '../receiptpage/receiptpage'
  73. });
  74. }
  75. },
  76. onLoad(options) {
  77. let list = JSON.parse(options.model);
  78. this.infoDATA = list;
  79. if (options.type) {
  80. this.type = options.type;
  81. } else {
  82. this.type = list.type;
  83. }
  84. // #ifdef APP-PLUS
  85. webHandle('no','app')
  86. // #endif
  87. // #ifdef H5
  88. webHandle('no','wx')
  89. // #endif
  90. }
  91. };
  92. </script>
  93. <style lang="less">
  94. .Scanning_insEnd {
  95. padding: 0 74rpx;
  96. .Scanning_top {
  97. height: 270rpx;
  98. .red {
  99. background-color: #ff3b53 !important;
  100. }
  101. .Scanning_top_icon {
  102. width: 140rpx;
  103. height: 140rpx;
  104. margin: 0 auto;
  105. margin-top: 116rpx;
  106. border-radius: 50%;
  107. line-height: 140rpx;
  108. .cubeic-ok {
  109. font-size: 140rpx;
  110. color: #35b34a
  111. }
  112. .cubeic-close {
  113. font-size: 140rpx;
  114. color: #ff3b53;
  115. }
  116. }
  117. .Scanning_top_text {
  118. .text1 {
  119. margin-top: 40rpx;
  120. font-size: 48rpx;
  121. text-align: center;
  122. }
  123. }
  124. }
  125. .Scanning_cont {
  126. font-size: 32rpx;
  127. text-align: center;
  128. view {
  129. margin-bottom: 16rpx;
  130. }
  131. .text {
  132. margin-top: 24rpx;
  133. color: #35b34a;
  134. }
  135. .text1 {
  136. margin-top: 24rpx;
  137. color: #ff3b53;
  138. }
  139. }
  140. .foot_btn {
  141. line-height: 88rpx;
  142. height: 100rpx;
  143. margin-top: 40rpx;
  144. .btn3 {
  145. height: 88rpx;
  146. width: 45%;
  147. background-image: linear-gradient(to right, #72c172, #3bb197);
  148. color: #fff;
  149. border-radius: 8rpx;
  150. font-size: 32rpx;
  151. margin: 16rpx auto 0;
  152. text-align: center;
  153. }
  154. }
  155. }
  156. </style>