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.scode }}<text v-if="item.stype">({{item.stype.name}})</text></view>
  9. </view>
  10. <view class="page_item_top_R">
  11. <text :style="{color:item.urgent == 1?'red':'green'}">{{item.urgent == 1 ? "急" : "普"}}</text>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="page_item_cont">
  16. <view class="page_item_cont_T">
  17. <view class="page_item_cont_title">
  18. <view> 检验项目 </view>
  19. <view class="text_big">{{ item.specimenDesc || "无" }}</view>
  20. </view>
  21. <view class="page_item_cont_title">
  22. <view> 患者姓名 </view>
  23. <view class="text_big">{{ item.patientName }}<text v-if="item.bedNum">({{item.bedNum}})</text></view>
  24. </view>
  25. <view class="page_item_cont_title">
  26. <view> 住院号 </view>
  27. <view class="text_big">{{item.residenceNo||'无'}}</text></view>
  28. </view>
  29. <view class="page_item_cont_title">
  30. <view class="text_big">{{
  31. item.sickRoom ? item.sickRoom.dept : "无"
  32. }}</view>
  33. <text style="width: 4em;text-align: center;" class="icon_transport transport-arrow-right-full"></text>
  34. <view class="text_big">{{
  35. item.checkDept ? item.checkDept.dept : "无"
  36. }}</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. "wxSign": "1",
  78. }
  79. };
  80. post(`/simple/data/fetchDataList/specimen`, postData).then((res) => {
  81. uni.hideLoading();
  82. uni.stopPullDownRefresh();
  83. if (res.status == 200) {
  84. this.list = res.list;
  85. } else {
  86. uni.showToast({
  87. icon: "none",
  88. title: "请求失败!",
  89. });
  90. }
  91. });
  92. },
  93. // 返回
  94. goto() {
  95. uni.navigateBack();
  96. },
  97. },
  98. onLoad(options) {
  99. console.log(options, "标本详情");
  100. this.workOrderId = options.workOrderId;
  101. this.associationTypeValue = options.associationTypeValue;
  102. this.getList();
  103. // #ifdef APP-PLUS
  104. webHandle("no", "app");
  105. // #endif
  106. // #ifdef H5
  107. webHandle("no", "wx");
  108. // #endif
  109. },
  110. onPullDownRefresh() {
  111. this.getList();
  112. },
  113. };
  114. </script>
  115. <style lang="less" scoped>
  116. .specimenCheckingDetail {
  117. padding-bottom: 100rpx;
  118. .page_header {
  119. margin: 20rpx;
  120. padding: 16rpx;
  121. border: 2rpx solid #e5e9ed;
  122. background: #fff;
  123. border-radius: 8rpx;
  124. .page_header_item {
  125. margin-bottom: 16rpx;
  126. .page_header_title {
  127. margin-bottom: 8rpx;
  128. font-weight: bold;
  129. }
  130. .page_header_content {
  131. display: flex;
  132. image {
  133. height: 100rpx;
  134. width: 30%;
  135. margin: 0 8rpx;
  136. }
  137. }
  138. }
  139. }
  140. .page_item_wrap {
  141. width: 100%;
  142. height: auto;
  143. box-sizing: border-box;
  144. position: relative;
  145. margin-bottom: 16rpx;
  146. .page_item {
  147. margin-top: 16rpx;
  148. margin-bottom: 124rpx;
  149. background: #fff;
  150. border-radius: 8rpx;
  151. margin: 0 20rpx;
  152. border: 2rpx solid #e5e9ed;
  153. position: relative;
  154. overflow: hidden;
  155. padding: 0 16rpx;
  156. .L {
  157. width: 40rpx;
  158. height: 40rpx;
  159. border-radius: 50%;
  160. background: #f9fafb;
  161. position: absolute;
  162. left: -20rpx;
  163. top: 68rpx;
  164. border: 2rpx solid #e5e9ed;
  165. }
  166. .R {
  167. width: 40rpx;
  168. height: 40rpx;
  169. border-radius: 50%;
  170. background: #f9fafb;
  171. position: absolute;
  172. float: right;
  173. right: -20rpx;
  174. top: 68rpx;
  175. border: 2rpx solid #e5e9ed;
  176. }
  177. .starting {
  178. width: 50rpx;
  179. height: 50rpx;
  180. color: #fff;
  181. background: #49b856;
  182. display: inline-block;
  183. border-radius: 50%;
  184. text-align: center;
  185. line-height: 46rpx;
  186. font-size: 32rpx;
  187. margin-right: 6rpx;
  188. }
  189. .End {
  190. width: 50rpx;
  191. height: 50rpx;
  192. color: #fff;
  193. background: #39b199;
  194. display: inline-block;
  195. border-radius: 50%;
  196. text-align: center;
  197. line-height: 46rpx;
  198. font-size: 32rpx;
  199. margin-right: 6rpx;
  200. }
  201. .page_item_top {
  202. height: 88rpx;
  203. border-bottom: 2rpx dashed #e5e9ed;
  204. padding: 0 16rpx;
  205. .page_item_top-inner {
  206. display: flex;
  207. justify-content: space-between;
  208. align-items: center;
  209. height: 100%;
  210. .page_item_top_L {
  211. .emergencys {
  212. background: #ff3b53 !important;
  213. width: 124rpx !important;
  214. }
  215. .emergency {
  216. background: #ff3b53 !important;
  217. }
  218. .emergency1 {
  219. background: #49b856 !important;
  220. }
  221. .page_item_cont_start {
  222. text-align: center;
  223. height: 44rpx;
  224. width: 104rpx;
  225. line-height: 44rpx;
  226. border-radius: 8rpx;
  227. background: #49b856;
  228. color: #fff;
  229. display: inline-block;
  230. }
  231. .L_time {
  232. color: #6cc076;
  233. font-size: 32rpx;
  234. }
  235. .L_text {
  236. font-size: 32rpx;
  237. font-weight: 700;
  238. }
  239. }
  240. .page_item_top_R {
  241. font-size: 32rpx;
  242. .back {
  243. background-color: #49b856;
  244. }
  245. .L_iocn {
  246. color: rgb(7, 134, 60);
  247. font-size: 36rpx;
  248. font-weight: 700;
  249. }
  250. }
  251. }
  252. }
  253. .page_item_cont {
  254. min-height: 90rpx;
  255. padding: 0 16rpx;
  256. text-align: left;
  257. position: relative;
  258. .text_big {
  259. font-size: 32rpx;
  260. font-weight: 700;
  261. margin-top: 10rpx;
  262. p {
  263. font-weight: 700;
  264. line-height: 1.5;
  265. }
  266. }
  267. .page_item_cont_T {
  268. padding-top: 28rpx;
  269. padding-bottom: 28rpx;
  270. font-size: 28rpx;
  271. .page_item_cont_title {
  272. height: 100%;
  273. font-size: 32rpx;
  274. display: flex;
  275. justify-content: space-between;
  276. align-items: center;
  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>