specimenDetail.vue 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. <template>
  2. <view class="specimenCheckingDetail">
  3. <view class="page_item_wrap" v-for="item in list" :key="item.id">
  4. <view class="page_item">
  5. <view class="page_item_top">
  6. <view class="page_item_top-inner">
  7. <view class="page_item_top_L">
  8. <view class="L_text">{{ item.patientName }}</view>
  9. </view>
  10. </view>
  11. </view>
  12. <view class="page_item_cont">
  13. <view class="page_item_cont_T">
  14. <view class="page_item_cont_title">
  15. <view> 检验项目 </view>
  16. <view class="text_big">{{ item.specimenDesc || "无" }}</view>
  17. </view>
  18. <view class="page_item_cont_title">
  19. <view> 标本编码 </view>
  20. <view class="text_big">{{ item.scode || "无" }}</view>
  21. </view>
  22. <view class="page_item_cont_title">
  23. <view> 标本类型 </view>
  24. <view class="text_big">{{
  25. item.stype ? item.stype.name : "无"
  26. }}</view>
  27. </view>
  28. <view class="page_item_cont_title">
  29. <view> 申请科室 </view>
  30. <view class="text_big">{{
  31. item.sickRoom ? item.sickRoom.dept : "无"
  32. }}</view>
  33. </view>
  34. <view class="page_item_cont_title">
  35. <view> 住院号 </view>
  36. <view class="text_big">{{ item.residenceNo || "无" }}</view>
  37. </view>
  38. </view>
  39. </view>
  40. <view class="L"></view>
  41. <view class="R"></view>
  42. </view>
  43. <view class="L-l"></view>
  44. <view class="R-l"></view>
  45. </view>
  46. <view class="foot_btn2">
  47. <view class="btn2" @click="goto()">返回</view>
  48. </view>
  49. </view>
  50. </template>
  51. <script>
  52. import {
  53. get,
  54. post,
  55. webHandle
  56. } from "../../http/http.js";
  57. export default {
  58. data() {
  59. return {
  60. workOrderId: 0,
  61. associationTypeValue: '',
  62. list: [],
  63. };
  64. },
  65. methods: {
  66. getList() {
  67. uni.showLoading({
  68. mask: true,
  69. title: "加载中",
  70. });
  71. let postData = {
  72. "idx": 0,
  73. "sum": 999,
  74. "specimen": {
  75. "gdid": this.workOrderId,
  76. "hosId": uni.getStorageSync('userData').user.currentHospital.id
  77. }
  78. };
  79. post(`/simple/data/fetchDataList/specimen`, postData).then((res) => {
  80. uni.hideLoading();
  81. uni.stopPullDownRefresh();
  82. if (res.status == 200) {
  83. this.list = res.list;
  84. } else {
  85. uni.showToast({
  86. icon: "none",
  87. title: "请求失败!",
  88. });
  89. }
  90. });
  91. },
  92. // 返回
  93. goto() {
  94. uni.navigateBack();
  95. },
  96. },
  97. onLoad(options) {
  98. console.log(options, "标本详情");
  99. this.workOrderId = options.workOrderId;
  100. this.associationTypeValue = options.associationTypeValue;
  101. this.getList();
  102. // #ifdef APP-PLUS
  103. webHandle("no", "app");
  104. // #endif
  105. // #ifdef H5
  106. webHandle("no", "wx");
  107. // #endif
  108. },
  109. onPullDownRefresh() {
  110. this.getList();
  111. },
  112. };
  113. </script>
  114. <style lang="less" scoped>
  115. .specimenCheckingDetail {
  116. padding-bottom: 100rpx;
  117. .page_header {
  118. margin: 20rpx;
  119. padding: 16rpx;
  120. border: 2rpx solid #e5e9ed;
  121. background: #fff;
  122. border-radius: 8rpx;
  123. .page_header_item {
  124. margin-bottom: 16rpx;
  125. .page_header_title {
  126. margin-bottom: 8rpx;
  127. font-weight: bold;
  128. }
  129. .page_header_content {
  130. display: flex;
  131. image {
  132. height: 100rpx;
  133. width: 30%;
  134. margin: 0 8rpx;
  135. }
  136. }
  137. }
  138. }
  139. .page_item_wrap {
  140. width: 100%;
  141. height: auto;
  142. box-sizing: border-box;
  143. position: relative;
  144. margin-bottom: 16rpx;
  145. .page_item {
  146. margin-top: 16rpx;
  147. margin-bottom: 124rpx;
  148. background: #fff;
  149. border-radius: 8rpx;
  150. margin: 0 20rpx;
  151. border: 2rpx solid #e5e9ed;
  152. position: relative;
  153. overflow: hidden;
  154. padding: 0 16rpx;
  155. .L {
  156. width: 40rpx;
  157. height: 40rpx;
  158. border-radius: 50%;
  159. background: #f9fafb;
  160. position: absolute;
  161. left: -20rpx;
  162. top: 68rpx;
  163. border: 2rpx solid #e5e9ed;
  164. }
  165. .R {
  166. width: 40rpx;
  167. height: 40rpx;
  168. border-radius: 50%;
  169. background: #f9fafb;
  170. position: absolute;
  171. float: right;
  172. right: -20rpx;
  173. top: 68rpx;
  174. border: 2rpx solid #e5e9ed;
  175. }
  176. .starting {
  177. width: 50rpx;
  178. height: 50rpx;
  179. color: #fff;
  180. background: #49b856;
  181. display: inline-block;
  182. border-radius: 50%;
  183. text-align: center;
  184. line-height: 46rpx;
  185. font-size: 32rpx;
  186. margin-right: 6rpx;
  187. }
  188. .End {
  189. width: 50rpx;
  190. height: 50rpx;
  191. color: #fff;
  192. background: #39b199;
  193. display: inline-block;
  194. border-radius: 50%;
  195. text-align: center;
  196. line-height: 46rpx;
  197. font-size: 32rpx;
  198. margin-right: 6rpx;
  199. }
  200. .page_item_top {
  201. height: 88rpx;
  202. border-bottom: 2rpx dashed #e5e9ed;
  203. padding: 0 16rpx;
  204. .page_item_top-inner {
  205. display: flex;
  206. justify-content: space-between;
  207. align-items: center;
  208. height: 100%;
  209. .page_item_top_L {
  210. .emergencys {
  211. background: #ff3b53 !important;
  212. width: 124rpx !important;
  213. }
  214. .emergency {
  215. background: #ff3b53 !important;
  216. }
  217. .emergency1 {
  218. background: #49b856 !important;
  219. }
  220. .page_item_cont_start {
  221. text-align: center;
  222. height: 44rpx;
  223. width: 104rpx;
  224. line-height: 44rpx;
  225. border-radius: 8rpx;
  226. background: #49b856;
  227. color: #fff;
  228. display: inline-block;
  229. }
  230. .L_time {
  231. color: #6cc076;
  232. font-size: 32rpx;
  233. }
  234. .L_text {
  235. font-size: 32rpx;
  236. font-weight: 700;
  237. }
  238. }
  239. .page_item_top_R {
  240. font-size: 32rpx;
  241. .back {
  242. background-color: #49b856;
  243. }
  244. .L_iocn {
  245. color: rgb(7, 134, 60);
  246. font-size: 36rpx;
  247. font-weight: 700;
  248. }
  249. }
  250. }
  251. }
  252. .page_item_cont {
  253. min-height: 90rpx;
  254. padding: 0 16rpx;
  255. text-align: left;
  256. position: relative;
  257. .text_big {
  258. font-size: 32rpx;
  259. font-weight: 700;
  260. margin-top: 10rpx;
  261. p {
  262. font-weight: 700;
  263. line-height: 1.5;
  264. }
  265. }
  266. .page_item_cont_T {
  267. padding-top: 28rpx;
  268. padding-bottom: 28rpx;
  269. font-size: 28rpx;
  270. .page_item_cont_title {
  271. height: 100%;
  272. font-size: 32rpx;
  273. display: flex;
  274. justify-content: space-between;
  275. }
  276. }
  277. .page_item_cont_B {
  278. padding-top: 28rpx;
  279. margin-bottom: 28rpx;
  280. .page_item_cont_title {
  281. font-size: 32rpx;
  282. display: flex;
  283. justify-content: space-between;
  284. }
  285. .page_item_cont_title1 {
  286. height: 60rpx;
  287. line-height: 60rpx;
  288. font-size: 32rpx;
  289. padding-left: 64rpx;
  290. }
  291. }
  292. }
  293. .page_item_foot {
  294. border-top: 2rpx dashed #e5e9ed;
  295. border-bottom: 2rpx dashed #e5e9ed;
  296. padding: 28rpx 16rpx;
  297. text-align: left;
  298. .page_item_foot_text {
  299. font-size: 32rpx;
  300. margin-bottom: 20rpx;
  301. .text1 {
  302. color: rgb(102, 102, 102);
  303. }
  304. .text2 {
  305. float: right;
  306. font-weight: 700;
  307. }
  308. }
  309. }
  310. #infos {
  311. display: none;
  312. }
  313. .page_item_infos {
  314. padding-bottom: 20rpx;
  315. border-bottom: 2rpx dashed #e5e9ed;
  316. .page_item_info2 {
  317. text-align: left;
  318. line-height: 60rpx;
  319. font-size: 32rpx;
  320. padding-left: 16rpx;
  321. .page_item_foot_text {
  322. font-size: 32rpx;
  323. margin-bottom: 20rpx;
  324. .text1 {
  325. color: rgb(102, 102, 102);
  326. }
  327. .text2 {
  328. float: right;
  329. font-weight: 700;
  330. }
  331. }
  332. }
  333. }
  334. }
  335. .L-l {
  336. width: 2rpx;
  337. height: 40rpx;
  338. background: #f9fafb;
  339. position: absolute;
  340. left: 20rpx;
  341. top: 72rpx;
  342. }
  343. .R-l {
  344. width: 2rpx;
  345. height: 40rpx;
  346. background: #f9fafb;
  347. position: absolute;
  348. right: 20rpx;
  349. top: 72rpx;
  350. }
  351. }
  352. .foot_btn2 {
  353. position: fixed;
  354. bottom: 0;
  355. width: 100vw;
  356. padding: 0 20rpx;
  357. box-sizing: border-box;
  358. line-height: 66rpx;
  359. height: 100rpx;
  360. border-top: 2rpx solid #e5e9ed;
  361. background: #f9fafb;
  362. text-align: center;
  363. display: flex;
  364. justify-content: center;
  365. align-items: center;
  366. .btn2 {
  367. height: 66rpx;
  368. flex: 1;
  369. margin: 16rpx 16rpx 0;
  370. background-image: linear-gradient(to right, #72c172, #3bb197);
  371. color: #fff;
  372. border-radius: 8rpx;
  373. font-size: 32rpx;
  374. }
  375. }
  376. }
  377. </style>