noScanSpecimen.vue 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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="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. workOrderId: -1,
  64. deptCode: '',
  65. specimens: [],
  66. };
  67. },
  68. methods: {
  69. // 返回
  70. goBack() {
  71. uni.navigateBack();
  72. },
  73. // 获取未扫描标本信息
  74. getNoScanSpecimen() {
  75. let postData = {
  76. workOrderId: this.workOrderId,
  77. currentPage: 0,
  78. pageSize: 999,
  79. deptQrCode:this.deptCode
  80. };
  81. uni.showLoading({
  82. title: "加载中",
  83. mask: true,
  84. });
  85. post("/api/noScanSpecimenData", postData).then((res) => {
  86. uni.hideLoading();
  87. if (res.data) {
  88. this.specimens = res.data;
  89. }
  90. });
  91. },
  92. },
  93. onLoad(options) {
  94. this.workOrderId = options.workOrderId;
  95. this.deptCode = options.deptCode;
  96. this.getNoScanSpecimen();
  97. // #ifdef APP-PLUS
  98. webHandle("no", "app");
  99. // #endif
  100. // #ifdef H5
  101. webHandle("no", "wx");
  102. // #endif
  103. },
  104. };
  105. </script>
  106. <style lang="less" scoped>
  107. .pharmacyDetails {
  108. background-color: rgb(249, 250, 251);
  109. padding-top: 50rpx;
  110. height: 100%;
  111. box-sizing: border-box;
  112. .pharmacyDetails_title {
  113. font-size: 46rpx;
  114. font-weight: 550;
  115. text-align: center;
  116. }
  117. .page_item_wrap {
  118. position: relative;
  119. margin-top: 32rpx;
  120. .page_item {
  121. margin-top: 16rpx;
  122. margin-bottom: 124rpx;
  123. background: #fff;
  124. border-radius: 8rpx;
  125. margin: 0 20rpx;
  126. border: 2rpx solid #e5e9ed;
  127. position: relative;
  128. overflow: hidden;
  129. padding: 0 16rpx;
  130. .L {
  131. width: 40rpx;
  132. height: 40rpx;
  133. border-radius: 50%;
  134. background: #f9fafb;
  135. position: absolute;
  136. left: -20rpx;
  137. top: 68rpx;
  138. border: 2rpx solid #e5e9ed;
  139. }
  140. .R {
  141. width: 40rpx;
  142. height: 40rpx;
  143. border-radius: 50%;
  144. background: #f9fafb;
  145. position: absolute;
  146. float: right;
  147. right: -20rpx;
  148. top: 68rpx;
  149. border: 2rpx solid #e5e9ed;
  150. }
  151. .page_item_top {
  152. height: 88rpx;
  153. border-bottom: 2rpx dashed #e5e9ed;
  154. padding: 0 16rpx;
  155. .page_item_top-inner {
  156. display: flex;
  157. justify-content: space-between;
  158. align-items: center;
  159. height: 100%;
  160. .page_item_top_L {
  161. .L_text {
  162. font-size: 32rpx;
  163. font-weight: 700;
  164. }
  165. }
  166. .page_item_top_R {
  167. font-size: 32rpx;
  168. .L_iocn {
  169. color: rgb(7, 134, 60);
  170. font-size: 36rpx;
  171. font-weight: 700;
  172. }
  173. }
  174. }
  175. }
  176. .page_item_cont {
  177. min-height: 180rpx;
  178. max-height: 424rpx;
  179. padding: 0 16rpx;
  180. text-align: left;
  181. position: relative;
  182. .text_big {
  183. font-size: 32rpx;
  184. font-weight: 700;
  185. text {
  186. font-weight: 700;
  187. line-height: 1.5;
  188. }
  189. }
  190. .line {
  191. height: 20rpx;
  192. width: 2rpx;
  193. border-left: 2rpx solid #e5e9ed;
  194. position: absolute;
  195. top: 82rpx;
  196. left: 40rpx;
  197. }
  198. .page_item_cont_T {
  199. padding-top: 28rpx;
  200. font-size: 28rpx;
  201. .page_item_cont_title {
  202. height: 100%;
  203. font-size: 32rpx;
  204. display: flex;
  205. justify-content: space-between;
  206. }
  207. }
  208. .page_item_cont_B {
  209. padding-top: 28rpx;
  210. margin-bottom: 28rpx;
  211. .page_item_cont_title {
  212. font-size: 32rpx;
  213. display: flex;
  214. justify-content: space-between;
  215. align-items: center;
  216. }
  217. }
  218. .page_item_cont_C {
  219. margin-bottom: 28rpx;
  220. .page_item_cont_title_C {
  221. font-size: 32rpx;
  222. display: flex;
  223. justify-content: space-between;
  224. align-items: center;
  225. }
  226. }
  227. #infos {
  228. display: none;
  229. }
  230. }
  231. }
  232. .L-l {
  233. width: 2rpx;
  234. height: 40rpx;
  235. background: #f9fafb;
  236. position: absolute;
  237. left: 20rpx;
  238. top: 72rpx;
  239. }
  240. .R-l {
  241. width: 2rpx;
  242. height: 40rpx;
  243. background: #f9fafb;
  244. position: absolute;
  245. right: 20rpx;
  246. top: 72rpx;
  247. }
  248. }
  249. .cube-toolbar-item {
  250. width: 710rpx;
  251. height: 68rpx;
  252. line-height: 68rpx;
  253. position: fixed;
  254. left: 20rpx;
  255. bottom: 160rpx;
  256. border-radius: 8rpx;
  257. background: linear-gradient(to right, #72c172, #3bb197);
  258. font-size: 36rpx;
  259. color: #fff;
  260. text-align: center;
  261. }
  262. .btn-wrap {
  263. display: flex;
  264. justify-content: space-between;
  265. position: fixed;
  266. left: 20rpx;
  267. bottom: 160rpx;
  268. }
  269. .cube-toolbar-item1 {
  270. width: 350rpx;
  271. height: 68rpx;
  272. line-height: 68rpx;
  273. border-radius: 8rpx;
  274. margin: 0 5rpx;
  275. background: linear-gradient(to right, #72c172, #3bb197);
  276. font-size: 36rpx;
  277. color: #fff;
  278. text-align: center;
  279. }
  280. .foot_btn2 {
  281. position: fixed;
  282. bottom: 0;
  283. right: 20rpx;
  284. left: 20rpx;
  285. line-height: 66rpx;
  286. height: 100rpx;
  287. border-top: 2rpx solid #e5e9ed;
  288. background: #f9fafb;
  289. display: flex;
  290. justify-content: space-between;
  291. .btn2 {
  292. height: 66rpx;
  293. width: 100%;
  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. .btn3 {
  303. height: 66rpx;
  304. width: 48%;
  305. margin: 0 1%;
  306. background-image: linear-gradient(to right, #72c172, #3bb197);
  307. color: #fff;
  308. border-radius: 8rpx;
  309. font-size: 32rpx;
  310. margin-top: 16rpx;
  311. text-align: center;
  312. }
  313. }
  314. }
  315. </style>