noScanSpecimen.vue 7.7 KB

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