noScanSpecimen.vue 9.4 KB

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