specimenDetail.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  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. }
  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. align-items: center;
  276. }
  277. }
  278. .page_item_cont_B {
  279. padding-top: 28rpx;
  280. margin-bottom: 28rpx;
  281. .page_item_cont_title {
  282. font-size: 32rpx;
  283. display: flex;
  284. justify-content: space-between;
  285. }
  286. .page_item_cont_title1 {
  287. height: 60rpx;
  288. line-height: 60rpx;
  289. font-size: 32rpx;
  290. padding-left: 64rpx;
  291. }
  292. }
  293. }
  294. .page_item_foot {
  295. border-top: 2rpx dashed #e5e9ed;
  296. border-bottom: 2rpx dashed #e5e9ed;
  297. padding: 28rpx 16rpx;
  298. text-align: left;
  299. .page_item_foot_text {
  300. font-size: 32rpx;
  301. margin-bottom: 20rpx;
  302. .text1 {
  303. color: rgb(102, 102, 102);
  304. }
  305. .text2 {
  306. float: right;
  307. font-weight: 700;
  308. }
  309. }
  310. }
  311. #infos {
  312. display: none;
  313. }
  314. .page_item_infos {
  315. padding-bottom: 20rpx;
  316. border-bottom: 2rpx dashed #e5e9ed;
  317. .page_item_info2 {
  318. text-align: left;
  319. line-height: 60rpx;
  320. font-size: 32rpx;
  321. padding-left: 16rpx;
  322. .page_item_foot_text {
  323. font-size: 32rpx;
  324. margin-bottom: 20rpx;
  325. .text1 {
  326. color: rgb(102, 102, 102);
  327. }
  328. .text2 {
  329. float: right;
  330. font-weight: 700;
  331. }
  332. }
  333. }
  334. }
  335. }
  336. .L-l {
  337. width: 2rpx;
  338. height: 40rpx;
  339. background: #f9fafb;
  340. position: absolute;
  341. left: 20rpx;
  342. top: 72rpx;
  343. }
  344. .R-l {
  345. width: 2rpx;
  346. height: 40rpx;
  347. background: #f9fafb;
  348. position: absolute;
  349. right: 20rpx;
  350. top: 72rpx;
  351. }
  352. }
  353. .foot_btn2 {
  354. position: fixed;
  355. bottom: 0;
  356. width: 100vw;
  357. padding: 0 20rpx;
  358. box-sizing: border-box;
  359. line-height: 66rpx;
  360. height: 100rpx;
  361. border-top: 2rpx solid #e5e9ed;
  362. background: #f9fafb;
  363. text-align: center;
  364. display: flex;
  365. justify-content: center;
  366. align-items: center;
  367. .btn2 {
  368. height: 66rpx;
  369. flex: 1;
  370. margin: 16rpx 16rpx 0;
  371. background-image: linear-gradient(to right, #72c172, #3bb197);
  372. color: #fff;
  373. border-radius: 8rpx;
  374. font-size: 32rpx;
  375. }
  376. }
  377. }
  378. </style>