specimenOrderComplete.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1"> 交接成功 </view>
  9. </view>
  10. </view>
  11. <view class="Scanning_cont">
  12. <view>您已到达{{queryObj.deptName}},请核对以下数量</view>
  13. <view class="table_head">
  14. <view>科室</view>
  15. <view>是否配送完成</view>
  16. </view>
  17. <view class="table_bodys">
  18. <view class="table_body" v-for="(item, index) in dataList" :key="index">
  19. <view>{{item.dept}}</view>
  20. <view :class="{red: item.all != item.complete}">{{item.all == item.complete ? '是' : '否'}}</view>
  21. </view>
  22. </view>
  23. </view>
  24. <view class="foot_btn_spe">
  25. <view class="btn3" @click="goIndex()">知道了</view>
  26. </view>
  27. </view>
  28. </template>
  29. <script>
  30. import {
  31. get,
  32. post,
  33. SM,
  34. webHandle
  35. } from "@/http/http.js";
  36. export default {
  37. data() {
  38. return {
  39. orderIds: '',
  40. bloodIds: '',
  41. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  42. dataList: [],
  43. queryObj: {}, //路由传递过来的数据
  44. };
  45. },
  46. methods: {
  47. // 知道了
  48. goIndex() {
  49. uni.navigateTo({
  50. url: `/pages/receiptpage/receiptpage`
  51. })
  52. },
  53. //获取页面信息
  54. getInfo(){
  55. uni.showLoading({
  56. title: "加载中",
  57. mask: true,
  58. });
  59. post('/workerOrder/ordersSpeSignDeptInfo', {
  60. "orderIds": JSON.parse(this.queryObj.ids).toString(),
  61. }).then(res => {
  62. uni.hideLoading();
  63. if(res.state == 200){
  64. this.dataList = res.data || [];
  65. }else{
  66. uni.showToast({
  67. icon: "none",
  68. title: res.msg || "接口获取数据失败!",
  69. });
  70. }
  71. })
  72. },
  73. },
  74. onLoad(options) {
  75. console.log(options, "result");
  76. this.queryObj = options;
  77. this.getInfo();
  78. // #ifdef APP-PLUS
  79. webHandle("no", "app");
  80. // #endif
  81. // #ifdef H5
  82. webHandle("no", "wx");
  83. // #endif
  84. },
  85. // 监听自定义事件并进行页面刷新操作
  86. onShow() {
  87.     uni.$on('refresh', (data) => {
  88.         if (data.refresh) {
  89.             // 刷新操作
  90. this.getInfo();
  91.         }
  92.     });
  93. },
  94. onUnload() {
  95. uni.$off('refresh'); // 需要手动解绑自定义事件
  96. }
  97. };
  98. </script>
  99. <style lang="less" scoped>
  100. .Scanning_Result {
  101. padding: 0 20rpx;
  102. display: flex;
  103. flex-direction: column;
  104. height: 100vh;
  105. .Scanning_top {
  106. .Scanning_top_icon {
  107. width: 140rpx;
  108. height: 140rpx;
  109. margin: 50rpx auto 40rpx;
  110. border-radius: 50%;
  111. .speNum{
  112. text-align: center;
  113. font-size: 140rpx;
  114. }
  115. .cubeic-ok {
  116. font-size: 140rpx;
  117. color: #35b34a;
  118. }
  119. .cubeic-close {
  120. font-size: 140rpx;
  121. color: #ff3b53;
  122. }
  123. }
  124. .Scanning_top_text {
  125. .text1 {
  126. font-size: 48rpx;
  127. text-align: center;
  128. }
  129. .success_tips {
  130. color: red;
  131. font-size: 30rpx;
  132. }
  133. }
  134. }
  135. .Scanning_cont {
  136. flex: 1;
  137. text-align: center;
  138. display: flex;
  139. flex-direction: column;
  140. .table_bodys{
  141. overflow-y: auto;
  142. flex: 1;
  143. }
  144. .table_head{
  145. display: flex;
  146. margin-top: 50rpx;
  147. .ml16{
  148. margin-left: 16rpx;
  149. }
  150. view {
  151. height: 110rpx;
  152. line-height: 1;
  153. flex: 1;
  154. font-weight: bold;
  155. color: #000;
  156. font-size: 38rpx;
  157. display: flex;
  158. justify-content: center;
  159. align-items: center;
  160. }
  161. }
  162. .table_body{
  163. background: #F3FAF7;
  164. border-radius: 8px;
  165. border: 1px solid #E9E9E9;
  166. display: flex;
  167. margin-bottom: 20rpx;
  168. padding: 30rpx 20rpx;
  169. view {
  170. line-height: 1;
  171. flex: 1;
  172. color: #555;
  173. font-size: 38rpx;
  174. display: flex;
  175. justify-content: center;
  176. align-items: center;
  177. word-break: break-all;
  178. }
  179. }
  180. }
  181. .foot_btn_spe {
  182. line-height: 64rpx;
  183. height: 64rpx;
  184. margin-bottom: 40rpx;
  185. text-align: center;
  186. display: flex;
  187. justify-content: space-between;
  188. view {
  189. height: 64rpx;
  190. flex: 1;
  191. margin: 0 1%;
  192. background-image: linear-gradient(to right, #72c172, #3bb197);
  193. color: #fff;
  194. border-radius: 8rpx;
  195. font-size: 26rpx;
  196. }
  197. }
  198. }
  199. </style>