promptPage.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <view class="Scanning_B" v-if="status !== null">
  3. <view class="Scanning_top" v-if="status == 200">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. </view>
  7. </view>
  8. <view class="Scanning_top" v-else>
  9. <view class="Scanning_top_icon">
  10. <text class="cubeic-close newicon newicon-shibai"></text>
  11. </view>
  12. </view>
  13. <view class="Scanning_cont" v-if="status == 200">
  14. <view class="tl">您已经成功接收{{result.deptName}}的{{result.num}}个药包</view>
  15. <!-- <view class="tl">您已经成功接收N7血液科的1个药包,共2组药品</view> -->
  16. <view class="success_item tl">发药单号包括:</view>
  17. <!-- <view class="success_item tl">明细详情:</view> -->
  18. <view class="tl">{{result.drugBagsCodes}}</view>
  19. <!-- <view class="tl">3200024183024</view> -->
  20. <!-- <view class="tl">3200024183025</view> -->
  21. </view>
  22. <view class="Scanning_cont" v-else>
  23. <view>{{errorContent}}</view>
  24. </view>
  25. <view class="foot_btn">
  26. <view class="btn3" @click="showAlert()">知道了</view>
  27. </view>
  28. </view>
  29. </template>
  30. <script>
  31. import {
  32. post,
  33. webHandle
  34. } from "../../http/http.js";
  35. export default {
  36. data() {
  37. return {
  38. result: {},
  39. options: {},
  40. errorContent: '',
  41. status: null,
  42. };
  43. },
  44. methods: {
  45. // 知道了
  46. showAlert() {
  47. uni.navigateTo({
  48. url: "../receiptpage/receiptpage",
  49. });
  50. },
  51. getInfo() {
  52. uni.showLoading({
  53. title: "加载中",
  54. mask: true,
  55. });
  56. post("/drugsBag/takeAndFillMedicineScan", {
  57. drugBagsCodes: this.options.code,
  58. })
  59. .then((result) => {
  60. uni.hideLoading();
  61. this.status = result.status;
  62. if (result.status == 200) {
  63. this.result = result || {};
  64. } else {
  65. this.errorContent = result.error;
  66. }
  67. })
  68. }
  69. },
  70. onLoad(options) {
  71. this.options = options;
  72. this.getInfo();
  73. // #ifdef APP-PLUS
  74. webHandle("no", "app");
  75. // #endif
  76. // #ifdef H5
  77. webHandle("no", "wx");
  78. // #endif
  79. }
  80. }
  81. </script>
  82. <style lang="less">
  83. .Scanning_B {
  84. display: flex;
  85. flex-direction: column;
  86. height: 100vh;
  87. padding: 0 40rpx;
  88. .Scanning_top {
  89. height: 150rpx;
  90. .Scanning_top_icon {
  91. width: 140rpx;
  92. height: 140rpx;
  93. margin: 0 auto;
  94. border-radius: 50%;
  95. line-height: 140rpx;
  96. text-align: center;
  97. .cubeic-ok {
  98. font-size: 140rpx;
  99. color: #35b34a;
  100. }
  101. .cubeic-close {
  102. font-size: 140rpx;
  103. color: #ff3b53;
  104. }
  105. }
  106. .Scanning_top_text {
  107. .text1 {
  108. margin-top: 40rpx;
  109. font-size: 48rpx;
  110. text-align: center;
  111. }
  112. }
  113. }
  114. .Scanning_cont {
  115. font-size: 32rpx;
  116. .tl{
  117. text-align: left;
  118. }
  119. .success_item{
  120. color: #8f8f8f;
  121. }
  122. view {
  123. margin-bottom: 16rpx;
  124. text-align: center;
  125. }
  126. .text {
  127. margin-top: 24rpx;
  128. color: #35b34a;
  129. }
  130. .text1 {
  131. margin-top: 24rpx;
  132. color: #ff3b53;
  133. }
  134. }
  135. .foot_btn {
  136. line-height: 88rpx;
  137. height: 100rpx;
  138. margin-top: 40rpx;
  139. display: flex;
  140. justify-content: center;
  141. .btn3 {
  142. flex: 1;
  143. height: 88rpx;
  144. background-image: linear-gradient(to right, #72c172, #3bb197);
  145. color: #fff;
  146. border-radius: 8rpx;
  147. font-size: 32rpx;
  148. margin-top: 16rpx;
  149. margin-right: 16rpx;
  150. text-align: center;
  151. &:last-of-type {
  152. margin-right: 0;
  153. }
  154. }
  155. }
  156. }
  157. </style>