list.vue 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_cont">
  4. <scroll-view scroll-y class="scrollContent">
  5. <view class="column" v-for="item in drugsBagList" :key="item.id" @click="toDetail(item.id)">
  6. <view class="head">
  7. <view class="name">{{item.packid}}</view>
  8. <view class="value">{{item.drugsState ? item.drugsState.name : ''}}</view>
  9. </view>
  10. <view class="body">
  11. <view class="bodyColumn">
  12. <view class="name">种类数:{{item.drugsTypeCount}}</view>
  13. <view class="value">总数:{{item.drugsCount}}</view>
  14. </view>
  15. <view class="bodyColumn">
  16. <view class="name">收取人:<template v-if="item.startLog">{{item.startLog.username}}</template></view>
  17. <view class="value">收取时间:<template v-if="item.startLog">{{item.startLog.operationTime | formatDate('yyyy-MM-dd hh:mm')}}</template></view>
  18. </view>
  19. <view class="bodyColumn">
  20. <view class="name">送达人:<template v-if="item.endLog">{{item.endLog.username}}</template></view>
  21. <view class="value">送达时间:<template v-if="item.endLog">{{item.endLog.operationTime | formatDate('yyyy-MM-dd hh:mm')}}</template></view>
  22. </view>
  23. <view class="bodyColumn">
  24. <view class="name">收取交接人:<template v-if="item.startLog">{{item.startLog.handoverName}}</template></view>
  25. <view class="name">送达交接人:<template v-if="item.endLog">{{item.endLog.handoverName}}</template></view>
  26. </view>
  27. </view>
  28. </view>
  29. </scroll-view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. get,
  36. post,
  37. SM,
  38. webHandle
  39. } from "@/http/http.js";
  40. export default {
  41. data() {
  42. return {
  43. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  44. drugsBagList: [], //药包列表
  45. queryObj: {}, //路由传递过来的数据
  46. workOrder: {}, //工单信息
  47. config: {}, //配置
  48. };
  49. },
  50. methods: {
  51. // 详情
  52. toDetail(drugsBagId){
  53. uni.navigateTo({
  54. url: `/pages/newDrug/detail?drugsBagType=${this.queryObj.drugsBagType}&drugsBagId=${drugsBagId}`,
  55. });
  56. },
  57. //获取页面信息
  58. getInfo(){
  59. uni.showLoading({
  60. title: "加载中",
  61. mask: true,
  62. });
  63. post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId}).then(res => {
  64. uni.hideLoading();
  65. if(res.state == 200){
  66. if(res.data){
  67. this.drugsBagList = res.data.drugsBagList || [];
  68. this.workOrder = res.data.workOrder || {};
  69. }
  70. }else{
  71. uni.showToast({
  72. icon: "none",
  73. title: res.msg || "接口获取数据失败!",
  74. });
  75. }
  76. })
  77. },
  78. },
  79. onLoad(options) {
  80. console.log(options, "options");
  81. this.queryObj = options;
  82. this.getInfo();
  83. // #ifdef APP-PLUS
  84. webHandle("no", "app");
  85. // #endif
  86. // #ifdef H5
  87. webHandle("no", "wx");
  88. // #endif
  89. },
  90. };
  91. </script>
  92. <style lang="less" scoped>
  93. .Scanning_Result {
  94. background: #F7F7F7;
  95. display: flex;
  96. flex-direction: column;
  97. height: 100vh;
  98. .Scanning_top {
  99. margin: 32rpx auto;
  100. .Scanning_top_icon {
  101. font-size: 30rpx;
  102. font-weight: bold;
  103. .newicon{
  104. margin: 0 32rpx;
  105. }
  106. }
  107. }
  108. .Scanning_top_tips{
  109. display: flex;
  110. align-items: center;
  111. justify-content: center;
  112. font-size: 28rpx;
  113. margin-bottom: 32rpx;
  114. gap: 64rpx;
  115. }
  116. .Scanning_cont {
  117. flex: 1;
  118. min-height: 0;
  119. display: flex;
  120. flex-direction: column;
  121. .scrollContent{
  122. flex: 1;
  123. min-height: 0;
  124. overflow: hidden;
  125. }
  126. .column{
  127. background: #FFFFFF;
  128. font-size: 24rpx;
  129. margin-bottom: 16rpx;
  130. .head{
  131. padding: 24rpx;
  132. display: flex;
  133. justify-content: space-between;
  134. align-content: center;
  135. border-bottom: 1rpx solid #D2D2D2;
  136. font-weight: bold;
  137. }
  138. .body{
  139. padding: 24rpx;
  140. .bodyColumn{
  141. display: flex;
  142. justify-content: space-between;
  143. align-content: center;
  144. margin-top: 24rpx;
  145. &:first-of-type{
  146. margin-top: 0;
  147. }
  148. .value{
  149. text-align: left;
  150. }
  151. }
  152. }
  153. }
  154. }
  155. .foot_btn_spe {
  156. margin: 24rpx 0;
  157. display: flex;
  158. flex-direction: column;
  159. align-items: center;
  160. gap: 24rpx;
  161. font-weight: bold;
  162. .column{
  163. width: 100%;
  164. height: 78rpx;
  165. display: flex;
  166. align-items: center;
  167. justify-content: space-between;
  168. gap: 24rpx;
  169. .btn {
  170. height: 100%;
  171. flex: 1;
  172. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  173. color: #fff;
  174. border-radius: 4rpx;
  175. font-size: 30rpx;
  176. display: flex;
  177. justify-content: center;
  178. align-items: center;
  179. }
  180. }
  181. }
  182. }
  183. </style>