specimenDetail.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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": 10,
  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.navigateTo({
  95. url: `../receipt_infopage/receipt_infopage?id=${this.workOrderId}&associationTypeValue=${this.associationTypeValue}`,
  96. });
  97. },
  98. },
  99. onLoad(options) {
  100. console.log(options, "标本详情");
  101. this.workOrderId = options.workOrderId;
  102. this.associationTypeValue = options.associationTypeValue;
  103. this.getList();
  104. // #ifdef APP-PLUS
  105. webHandle("no", "app");
  106. // #endif
  107. // #ifdef H5
  108. webHandle("no", "wx");
  109. // #endif
  110. },
  111. onPullDownRefresh() {
  112. this.getList();
  113. },
  114. };
  115. </script>
  116. <style lang="less" scoped>
  117. .specimenCheckingDetail {
  118. padding-bottom: 100rpx;
  119. .page_header {
  120. margin: 20rpx;
  121. padding: 16rpx;
  122. border: 2rpx solid #e5e9ed;
  123. background: #fff;
  124. border-radius: 8rpx;
  125. .page_header_item {
  126. margin-bottom: 16rpx;
  127. .page_header_title {
  128. margin-bottom: 8rpx;
  129. font-weight: bold;
  130. }
  131. .page_header_content {
  132. display: flex;
  133. image {
  134. height: 100rpx;
  135. width: 30%;
  136. margin: 0 8rpx;
  137. }
  138. }
  139. }
  140. }
  141. .page_item_wrap {
  142. width: 100%;
  143. height: auto;
  144. box-sizing: border-box;
  145. position: relative;
  146. margin-bottom: 16rpx;
  147. .page_item {
  148. margin-top: 16rpx;
  149. margin-bottom: 124rpx;
  150. background: #fff;
  151. border-radius: 8rpx;
  152. margin: 0 20rpx;
  153. border: 2rpx solid #e5e9ed;
  154. position: relative;
  155. overflow: hidden;
  156. padding: 0 16rpx;
  157. .L {
  158. width: 40rpx;
  159. height: 40rpx;
  160. border-radius: 50%;
  161. background: #f9fafb;
  162. position: absolute;
  163. left: -20rpx;
  164. top: 68rpx;
  165. border: 2rpx solid #e5e9ed;
  166. }
  167. .R {
  168. width: 40rpx;
  169. height: 40rpx;
  170. border-radius: 50%;
  171. background: #f9fafb;
  172. position: absolute;
  173. float: right;
  174. right: -20rpx;
  175. top: 68rpx;
  176. border: 2rpx solid #e5e9ed;
  177. }
  178. .starting {
  179. width: 50rpx;
  180. height: 50rpx;
  181. color: #fff;
  182. background: #49b856;
  183. display: inline-block;
  184. border-radius: 50%;
  185. text-align: center;
  186. line-height: 46rpx;
  187. font-size: 32rpx;
  188. margin-right: 6rpx;
  189. }
  190. .End {
  191. width: 50rpx;
  192. height: 50rpx;
  193. color: #fff;
  194. background: #39b199;
  195. display: inline-block;
  196. border-radius: 50%;
  197. text-align: center;
  198. line-height: 46rpx;
  199. font-size: 32rpx;
  200. margin-right: 6rpx;
  201. }
  202. .page_item_top {
  203. height: 88rpx;
  204. border-bottom: 2rpx dashed #e5e9ed;
  205. padding: 0 16rpx;
  206. .page_item_top-inner {
  207. display: flex;
  208. justify-content: space-between;
  209. align-items: center;
  210. height: 100%;
  211. .page_item_top_L {
  212. .emergencys {
  213. background: #ff3b53 !important;
  214. width: 124rpx !important;
  215. }
  216. .emergency {
  217. background: #ff3b53 !important;
  218. }
  219. .emergency1 {
  220. background: #49b856 !important;
  221. }
  222. .page_item_cont_start {
  223. text-align: center;
  224. height: 44rpx;
  225. width: 104rpx;
  226. line-height: 44rpx;
  227. border-radius: 8rpx;
  228. background: #49b856;
  229. color: #fff;
  230. display: inline-block;
  231. }
  232. .L_time {
  233. color: #6cc076;
  234. font-size: 32rpx;
  235. }
  236. .L_text {
  237. font-size: 32rpx;
  238. font-weight: 700;
  239. }
  240. }
  241. .page_item_top_R {
  242. font-size: 32rpx;
  243. .back {
  244. background-color: #49b856;
  245. }
  246. .L_iocn {
  247. color: rgb(7, 134, 60);
  248. font-size: 36rpx;
  249. font-weight: 700;
  250. }
  251. }
  252. }
  253. }
  254. .page_item_cont {
  255. min-height: 90rpx;
  256. padding: 0 16rpx;
  257. text-align: left;
  258. position: relative;
  259. .text_big {
  260. font-size: 32rpx;
  261. font-weight: 700;
  262. margin-top: 10rpx;
  263. p {
  264. font-weight: 700;
  265. line-height: 1.5;
  266. }
  267. }
  268. .page_item_cont_T {
  269. padding-top: 28rpx;
  270. padding-bottom: 28rpx;
  271. font-size: 28rpx;
  272. .page_item_cont_title {
  273. height: 100%;
  274. font-size: 32rpx;
  275. display: flex;
  276. justify-content: space-between;
  277. }
  278. }
  279. .page_item_cont_B {
  280. padding-top: 28rpx;
  281. margin-bottom: 28rpx;
  282. .page_item_cont_title {
  283. font-size: 32rpx;
  284. display: flex;
  285. justify-content: space-between;
  286. }
  287. .page_item_cont_title1 {
  288. height: 60rpx;
  289. line-height: 60rpx;
  290. font-size: 32rpx;
  291. padding-left: 64rpx;
  292. }
  293. }
  294. }
  295. .page_item_foot {
  296. border-top: 2rpx dashed #e5e9ed;
  297. border-bottom: 2rpx dashed #e5e9ed;
  298. padding: 28rpx 16rpx;
  299. text-align: left;
  300. .page_item_foot_text {
  301. font-size: 32rpx;
  302. margin-bottom: 20rpx;
  303. .text1 {
  304. color: rgb(102, 102, 102);
  305. }
  306. .text2 {
  307. float: right;
  308. font-weight: 700;
  309. }
  310. }
  311. }
  312. #infos {
  313. display: none;
  314. }
  315. .page_item_infos {
  316. padding-bottom: 20rpx;
  317. border-bottom: 2rpx dashed #e5e9ed;
  318. .page_item_info2 {
  319. text-align: left;
  320. line-height: 60rpx;
  321. font-size: 32rpx;
  322. padding-left: 16rpx;
  323. .page_item_foot_text {
  324. font-size: 32rpx;
  325. margin-bottom: 20rpx;
  326. .text1 {
  327. color: rgb(102, 102, 102);
  328. }
  329. .text2 {
  330. float: right;
  331. font-weight: 700;
  332. }
  333. }
  334. }
  335. }
  336. }
  337. .L-l {
  338. width: 2rpx;
  339. height: 40rpx;
  340. background: #f9fafb;
  341. position: absolute;
  342. left: 20rpx;
  343. top: 72rpx;
  344. }
  345. .R-l {
  346. width: 2rpx;
  347. height: 40rpx;
  348. background: #f9fafb;
  349. position: absolute;
  350. right: 20rpx;
  351. top: 72rpx;
  352. }
  353. }
  354. .foot_btn2 {
  355. position: fixed;
  356. bottom: 0;
  357. width: 100vw;
  358. padding: 0 20rpx;
  359. box-sizing: border-box;
  360. line-height: 66rpx;
  361. height: 100rpx;
  362. border-top: 2rpx solid #e5e9ed;
  363. background: #f9fafb;
  364. text-align: center;
  365. display: flex;
  366. justify-content: center;
  367. align-items: center;
  368. .btn2 {
  369. height: 66rpx;
  370. flex: 1;
  371. margin: 16rpx 16rpx 0;
  372. background-image: linear-gradient(to right, #72c172, #3bb197);
  373. color: #fff;
  374. border-radius: 8rpx;
  375. font-size: 32rpx;
  376. }
  377. }
  378. }
  379. </style>