specimenCheckingEndDetail.vue 9.1 KB

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