detail.vue 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top">
  4. <view class="Scanning_top_icon">{{drugsBag.packid}}</view>
  5. </view>
  6. <view class="Scanning_top_tips">
  7. <view class="info">申请:{{drugsBag.target ? drugsBag.target.dept : ''}}</view>
  8. <view class="info">发药:{{drugsBag.launch ? drugsBag.launch.dept : ''}}</view>
  9. </view>
  10. <view class="Scanning_cont">
  11. <view class="column head">
  12. <view class="value1">药品名称+规格<text class="red">({{drugsList.length}})</text></view>
  13. <view class="value2">数量</view>
  14. </view>
  15. <scroll-view scroll-y class="scrollContent">
  16. <view class="column" v-for="item in drugsList" :key="item.id">
  17. <view class="value1">{{item.drugsInfo}} {{item.model}}</view>
  18. <view class="value2">{{item.drugsNum}}</view>
  19. </view>
  20. </scroll-view>
  21. </view>
  22. <view class="foot_btn_spe">
  23. <view class="column">
  24. <view class="btn" @click="goBack()">返回</view>
  25. </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. hosId: uni.getStorageSync('userData').user.currentHospital.id,
  40. drugsList: [], //药品列表
  41. queryObj: {}, //路由传递过来的数据
  42. drugsBag: {}, //药包信息
  43. config: {}, //配置
  44. };
  45. },
  46. methods: {
  47. // 返回
  48. goBack(){
  49. uni.navigateBack()
  50. },
  51. // 根据药包id查询药品
  52. getDrugsByDrugsBugId(drugsBagId){
  53. post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'drugsInfo', drugsBagId}).then(res => {
  54. uni.hideLoading();
  55. if(res.state == 200){
  56. if(res.data){
  57. this.drugsList = res.data.drugsList || [];
  58. this.drugsBag = res.data.drugsBag || {};
  59. }
  60. }else{
  61. uni.showToast({
  62. icon: "none",
  63. title: res.msg || "接口获取数据失败!",
  64. });
  65. }
  66. })
  67. },
  68. //获取页面信息
  69. getInfo(){
  70. uni.showLoading({
  71. title: "加载中",
  72. mask: true,
  73. });
  74. if(this.queryObj.drugsBagId){
  75. // 根据药包id查询药品
  76. this.getDrugsByDrugsBugId(this.queryObj.drugsBagId);
  77. }else if(this.queryObj.orderId){
  78. // 根据工单id查询药包,此时必是一单一码,即只有一个药包码
  79. post(`/transflow/extra`, {type: this.queryObj.drugsBagType, extraType: 'orderInfo', orderId: +this.queryObj.orderId}).then(res => {
  80. if(res.state == 200){
  81. if(res.data){
  82. let drugsBagList = res.data.drugsBagList || [];
  83. let drugsBag = drugsBagList[0] || {};
  84. if(drugsBag.id){
  85. this.getDrugsByDrugsBugId(drugsBag.id);
  86. }else{
  87. uni.hideLoading();
  88. uni.showToast({
  89. icon: "none",
  90. title: "未查询到药品!",
  91. });
  92. }
  93. }else{
  94. uni.hideLoading();
  95. }
  96. }else{
  97. uni.hideLoading();
  98. uni.showToast({
  99. icon: "none",
  100. title: res.msg || "接口获取数据失败!",
  101. });
  102. }
  103. })
  104. }
  105. },
  106. },
  107. onLoad(options) {
  108. console.log(options, "options");
  109. this.queryObj = options;
  110. this.getInfo();
  111. // #ifdef APP-PLUS
  112. webHandle("no", "app");
  113. // #endif
  114. // #ifdef H5
  115. webHandle("no", "wx");
  116. // #endif
  117. },
  118. };
  119. </script>
  120. <style lang="less" scoped>
  121. .Scanning_Result {
  122. background: #FAFBFD;
  123. padding: 0 24rpx;
  124. display: flex;
  125. flex-direction: column;
  126. height: 100vh;
  127. .Scanning_top {
  128. margin: 32rpx auto;
  129. .Scanning_top_icon {
  130. font-size: 30rpx;
  131. font-weight: bold;
  132. .newicon{
  133. margin: 0 32rpx;
  134. }
  135. }
  136. }
  137. .Scanning_top_tips{
  138. display: flex;
  139. align-items: center;
  140. justify-content: center;
  141. font-size: 28rpx;
  142. margin-bottom: 32rpx;
  143. gap: 64rpx;
  144. }
  145. .Scanning_cont {
  146. flex: 1;
  147. min-height: 0;
  148. display: flex;
  149. flex-direction: column;
  150. .scrollContent{
  151. flex: 1;
  152. min-height: 0;
  153. }
  154. .column{
  155. display: flex;
  156. justify-content: center;
  157. align-items: center;
  158. font-size: 28rpx;
  159. padding: 32rpx 24rpx;
  160. color: #565656;
  161. border-bottom: 1rpx solid #D9D9D9;
  162. gap: 8rpx;
  163. &.head{
  164. font-size: 30rpx;
  165. color: #000000;
  166. border: 1rpx solid #D9D9D9;
  167. box-shadow: 0rpx 3rpx 6rpx 1rpx rgba(0,0,0,0.16);
  168. background: #FBFCFE;
  169. }
  170. .value1{
  171. flex: 2;
  172. text-align: left;
  173. word-break: break-all;
  174. flex-shrink: 0;
  175. }
  176. .value2,.value3{
  177. flex: 1;
  178. text-align: center;
  179. word-break: break-all;
  180. flex-shrink: 0;
  181. }
  182. }
  183. }
  184. .foot_btn_spe {
  185. margin: 24rpx 0;
  186. display: flex;
  187. flex-direction: column;
  188. align-items: center;
  189. gap: 24rpx;
  190. font-weight: bold;
  191. .column{
  192. width: 100%;
  193. height: 78rpx;
  194. display: flex;
  195. align-items: center;
  196. justify-content: space-between;
  197. gap: 24rpx;
  198. .btn {
  199. height: 100%;
  200. flex: 1;
  201. background: linear-gradient( 90deg, #6FC073 0%, #3DB197 100%);
  202. color: #fff;
  203. border-radius: 4rpx;
  204. font-size: 30rpx;
  205. display: flex;
  206. justify-content: center;
  207. align-items: center;
  208. }
  209. }
  210. }
  211. }
  212. </style>