noScanSpecimen.vue 8.1 KB

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