noScanSpecimen.vue 8.4 KB

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