promptPage.vue 2.7 KB

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