drugBatches.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="pharmacyDetails_title">药品批次</view>
  4. <view class="page_item footerOtherMargin">
  5. <view class="page_item_wrap" v-for="item in batchNoList" :key="item.id">
  6. <view class="page_item">
  7. <view class="page_item_top">
  8. <view class="page_item_top-inner">
  9. <view class="page_item_top_L">
  10. <view class="L_text">{{item.packid || "无"}}</view>
  11. </view>
  12. <view class="page_item_top_R">
  13. <text>{{item.drugsState ? item.drugsState.name : "无"}}</text>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="page_item_cont">
  18. <view class="page_item_cont_T">
  19. </view>
  20. </view>
  21. <view class="L"></view>
  22. <view class="R"></view>
  23. </view>
  24. <view class="L-l"></view>
  25. <view class="R-l"></view>
  26. </view>
  27. </view>
  28. <view class="foot_btn2 footerPadding">
  29. <view class="btn2" @click="goBack">返回</view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. post,
  36. webHandle
  37. } from "../../http/http.js";
  38. export default {
  39. data() {
  40. return {
  41. hosId: null,
  42. options: {}, //路由传递过来的数据
  43. batchNoList: [],
  44. };
  45. },
  46. methods: {
  47. // 返回
  48. goBack() {
  49. uni.navigateBack();
  50. },
  51. //获取药包信息及其关联的工单信息
  52. queryDrugsBagForBatchNo(batchNo) {
  53. uni.showLoading({
  54. title: "加载中",
  55. mask: true,
  56. });
  57. post("/drugsBag/fetchDataList/drugsBag", {
  58. "idx": 0,
  59. "sum": 10,
  60. "drugsBag": {
  61. "hosId": this.hosId,
  62. "batchNo": batchNo,
  63. }
  64. }).then((res) => {
  65. uni.hideLoading();
  66. if (res.status == 200) {
  67. this.batchNoList = res.list || [];
  68. } else {
  69. uni.showToast({
  70. icon: "none",
  71. title: res.msg || "接口获取数据失败!",
  72. });
  73. }
  74. });
  75. },
  76. },
  77. onLoad(options) {
  78. this.hosId = uni.getStorageSync('userData').user.currentHospital.id;
  79. console.log(options);
  80. this.options = options;
  81. if (options.batchNo) {
  82. this.queryDrugsBagForBatchNo(options.batchNo);
  83. }
  84. // #ifdef APP-PLUS
  85. webHandle("no", "app");
  86. // #endif
  87. // #ifdef H5
  88. webHandle("no", "wx");
  89. // #endif
  90. },
  91. };
  92. </script>
  93. <style lang="less" scoped>
  94. .pharmacyDetails {
  95. background-color: rgb(249, 250, 251);
  96. padding-top: 50rpx;
  97. height: 100%;
  98. box-sizing: border-box;
  99. .pharmacyDetails_title {
  100. font-size: 46rpx;
  101. font-weight: 550;
  102. text-align: center;
  103. }
  104. .page_item_wrap {
  105. position: relative;
  106. margin-top: 32rpx;
  107. .page_item {
  108. margin-top: 16rpx;
  109. margin-bottom: 124rpx;
  110. background: #fff;
  111. border-radius: 8rpx;
  112. margin: 0 20rpx;
  113. border: 2rpx solid #e5e9ed;
  114. position: relative;
  115. overflow: hidden;
  116. padding: 0 16rpx;
  117. .L {
  118. width: 40rpx;
  119. height: 40rpx;
  120. border-radius: 50%;
  121. background: #f9fafb;
  122. position: absolute;
  123. left: -20rpx;
  124. top: 68rpx;
  125. border: 2rpx solid #e5e9ed;
  126. }
  127. .R {
  128. width: 40rpx;
  129. height: 40rpx;
  130. border-radius: 50%;
  131. background: #f9fafb;
  132. position: absolute;
  133. float: right;
  134. right: -20rpx;
  135. top: 68rpx;
  136. border: 2rpx solid #e5e9ed;
  137. }
  138. .page_item_top {
  139. height: 88rpx;
  140. border-bottom: 2rpx dashed #e5e9ed;
  141. padding: 0 16rpx;
  142. .page_item_top-inner {
  143. display: flex;
  144. justify-content: space-between;
  145. align-items: center;
  146. height: 100%;
  147. .page_item_top_L {
  148. .L_text {
  149. font-size: 32rpx;
  150. font-weight: 700;
  151. }
  152. }
  153. .page_item_top_R {
  154. font-size: 32rpx;
  155. .L_iocn {
  156. color: rgb(7, 134, 60);
  157. font-size: 36rpx;
  158. font-weight: 700;
  159. }
  160. }
  161. }
  162. }
  163. .page_item_cont {
  164. min-height: 90rpx;
  165. padding: 0 16rpx;
  166. text-align: left;
  167. position: relative;
  168. .text_big {
  169. font-size: 32rpx;
  170. font-weight: 700;
  171. // margin-top: 10rpx;
  172. p {
  173. font-weight: 700;
  174. line-height: 1.5;
  175. }
  176. }
  177. .line {
  178. height: 20rpx;
  179. width: 2rpx;
  180. border-left: 2rpx solid #e5e9ed;
  181. position: absolute;
  182. top: 82rpx;
  183. left: 40rpx;
  184. }
  185. .page_item_cont_T {
  186. padding-top: 28rpx;
  187. padding-bottom: 28rpx;
  188. font-size: 28rpx;
  189. .page_item_cont_title {
  190. height: 100%;
  191. font-size: 32rpx;
  192. display: flex;
  193. justify-content: space-between;
  194. align-items: center;
  195. }
  196. }
  197. .page_item_cont_B {
  198. padding-top: 28rpx;
  199. margin-bottom: 28rpx;
  200. .page_item_cont_title {
  201. font-size: 32rpx;
  202. display: flex;
  203. justify-content: space-between;
  204. align-items: center;
  205. }
  206. }
  207. .page_item_cont_C {
  208. margin-bottom: 28rpx;
  209. .page_item_cont_title_C {
  210. font-size: 32rpx;
  211. display: flex;
  212. justify-content: space-between;
  213. align-items: center;
  214. }
  215. }
  216. #infos {
  217. display: none;
  218. }
  219. }
  220. }
  221. .L-l {
  222. width: 2rpx;
  223. height: 40rpx;
  224. background: #f9fafb;
  225. position: absolute;
  226. left: 20rpx;
  227. top: 72rpx;
  228. }
  229. .R-l {
  230. width: 2rpx;
  231. height: 40rpx;
  232. background: #f9fafb;
  233. position: absolute;
  234. right: 20rpx;
  235. top: 72rpx;
  236. }
  237. }
  238. .cube-toolbar-item {
  239. width: 710rpx;
  240. height: 68rpx;
  241. line-height: 68rpx;
  242. position: fixed;
  243. left: 20rpx;
  244. bottom: 160rpx;
  245. border-radius: 8rpx;
  246. background: linear-gradient(to right, #72c172, #3bb197);
  247. font-size: 36rpx;
  248. color: #fff;
  249. text-align: center;
  250. }
  251. .btn-wrap {
  252. display: flex;
  253. justify-content: space-between;
  254. position: fixed;
  255. left: 20rpx;
  256. bottom: 160rpx;
  257. }
  258. .cube-toolbar-item1 {
  259. width: 350rpx;
  260. height: 68rpx;
  261. line-height: 68rpx;
  262. border-radius: 8rpx;
  263. margin: 0 5rpx;
  264. background: linear-gradient(to right, #72c172, #3bb197);
  265. font-size: 36rpx;
  266. color: #fff;
  267. text-align: center;
  268. }
  269. .foot_btn2 {
  270. position: fixed;
  271. bottom: 0;
  272. right: 20rpx;
  273. left: 20rpx;
  274. line-height: 66rpx;
  275. height: 100rpx;
  276. border-top: 2rpx solid #e5e9ed;
  277. background: #f9fafb;
  278. display: flex;
  279. justify-content: space-between;
  280. .btn2 {
  281. height: 66rpx;
  282. width: 100%;
  283. margin: 0 1%;
  284. background-image: linear-gradient(to right, #72c172, #3bb197);
  285. color: #fff;
  286. border-radius: 8rpx;
  287. font-size: 32rpx;
  288. margin-top: 16rpx;
  289. text-align: center;
  290. }
  291. .btn3 {
  292. height: 66rpx;
  293. width: 48%;
  294. margin: 0 1%;
  295. background-image: linear-gradient(to right, #72c172, #3bb197);
  296. color: #fff;
  297. border-radius: 8rpx;
  298. font-size: 32rpx;
  299. margin-top: 16rpx;
  300. text-align: center;
  301. }
  302. }
  303. }
  304. </style>