specimenCheckingEndDetail.vue 7.4 KB

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