scannedDepartmentSpecimensDetail.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427
  1. <template>
  2. <view class="pharmacyDetails">
  3. <view class="page_item footerOtherMargin">
  4. <view class="page_header" v-for="(item, index) in resultList" :key="item.bindId">
  5. <view class="page_header_item" v-if="item.modifyReason">
  6. <view class="page_header_title"> 修改原因: </view>
  7. <view class="page_header_content">
  8. {{ item.modifyReason }}
  9. </view>
  10. </view>
  11. <view class="page_header_item" v-if="item.imgs && item.imgs.length">
  12. <view class="page_header_title"> 图片列表: </view>
  13. <view class="page_header_content">
  14. <image v-for="(item, i) in item.imgs" :key="i" :src="item" @click="previewImage(index, i)" mode="widthFix"
  15. @error="close(index, i)"></image>
  16. </view>
  17. </view>
  18. </view>
  19. <view class="page_item_wrap" v-for="spe in specimens" :key="spe.id">
  20. <view class="page_item">
  21. <view class="page_item_top">
  22. <view class="page_item_top-inner">
  23. <view class="page_item_top_L">
  24. <view class="L_text">{{ spe.scode }}<text v-if="spe.stype">({{spe.stype.name}})</text></view>
  25. </view>
  26. <view class="page_item_top_R">
  27. <text :style="{color:spe.urgent == 1?'red':'green'}">{{spe.urgent == 1 ? "急" : "普"}}</text>
  28. </view>
  29. </view>
  30. </view>
  31. <view class="page_item_cont">
  32. <view class="page_item_cont_T">
  33. <view class="page_item_cont_title">
  34. <view> 检验项目 </view>
  35. <view class="text_big">{{ spe.specimenDesc || "无" }}</view>
  36. </view>
  37. <view class="page_item_cont_title">
  38. <view> 患者姓名 </view>
  39. <view class="text_big">{{ spe.patientName }}<text v-if="spe.bedNum">({{spe.bedNum}})</text></view>
  40. </view>
  41. <view class="page_item_cont_title">
  42. <view> 住院号 </view>
  43. <view class="text_big">{{spe.residenceNo||'无'}}</text></view>
  44. </view>
  45. <view class="page_item_cont_title">
  46. <view class="text_big">{{
  47. spe.sickRoom ? spe.sickRoom.dept : "无"
  48. }}</view>
  49. <text style="width: 4em;text-align: center;" class="icon_transport transport-arrow-right-full"></text>
  50. <view class="text_big">{{
  51. spe.checkDept ? spe.checkDept.dept : "无"
  52. }}</view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="L"></view>
  57. <view class="R"></view>
  58. </view>
  59. <view class="L-l"></view>
  60. <view class="R-l"></view>
  61. </view>
  62. </view>
  63. <view class="foot_btn2 footerPadding">
  64. <view class="btn2" @click="goBack">返回</view>
  65. </view>
  66. </view>
  67. </template>
  68. <script>
  69. import {
  70. post,
  71. get,
  72. webHandle
  73. } from "../../http/http.js";
  74. export default {
  75. data() {
  76. return {
  77. resultList: [],
  78. imgs: [],
  79. queryObj: {}, //路由传递过来的数据
  80. specimens: [],
  81. modifyReason: '',
  82. };
  83. },
  84. methods: {
  85. previewImage(index, i) {
  86. //uniapp预览轮播图
  87. uni.previewImage({
  88. current: i, //预览图片的下标
  89. urls: this.resultList[index].imgs, //预览图片的地址,必须要数组形式,如果不是数组形式就转换成数组形式就可以
  90. });
  91. },
  92. close(index, i) {
  93. this.resultList[index].imgs.splice(i, 1);
  94. },
  95. getInfo() {
  96. let postData = {
  97. deptId: this.queryObj.endDeptId,
  98. gdId: this.queryObj.workOrderId,
  99. };
  100. post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
  101. if (res.status == 200) {
  102. for (let i = 0; i < res.data.length; i++) {
  103. get(
  104. `/common/common/listAttachment/specimenPhotos/${res.data[i].bindId}`
  105. ).then((result) => {
  106. if (result.status == 200) {
  107. res.data[i].imgs = result.data.map((v) => v.previewUrl);
  108. } else {
  109. res.data[i].imgs = [];
  110. }
  111. this.resultList = res.data;
  112. });
  113. }
  114. }
  115. });
  116. },
  117. // 返回
  118. goBack() {
  119. uni.navigateBack();
  120. },
  121. // 获取标本信息
  122. getDetail() {
  123. let postData = {
  124. gdId: this.queryObj.workOrderId,
  125. endDeptId: this.queryObj.endDeptId,
  126. };
  127. uni.showLoading({
  128. title: "加载中",
  129. mask: true,
  130. });
  131. post("/api/endDeptReceiveSpecimens", postData).then((res) => {
  132. uni.hideLoading();
  133. if (res.status == 200) {
  134. this.specimens = res.data;
  135. } else {
  136. uni.showToast({
  137. icon: "none",
  138. title: "请求失败!",
  139. });
  140. }
  141. });
  142. },
  143. },
  144. onLoad(options) {
  145. console.log(options);
  146. this.queryObj = options;
  147. this.getDetail();
  148. this.getInfo();
  149. // #ifdef APP-PLUS
  150. webHandle("no", "app");
  151. // #endif
  152. // #ifdef H5
  153. webHandle("no", "wx");
  154. // #endif
  155. },
  156. };
  157. </script>
  158. <style lang="less" scoped>
  159. .pharmacyDetails {
  160. background-color: rgb(249, 250, 251);
  161. padding-top: 50rpx;
  162. height: 100%;
  163. box-sizing: border-box;
  164. .page_header {
  165. margin: 20rpx;
  166. padding: 16rpx;
  167. border: 2rpx solid #e5e9ed;
  168. background: #fff;
  169. border-radius: 8rpx;
  170. .page_header_item {
  171. margin-bottom: 16rpx;
  172. .page_header_title {
  173. margin-bottom: 8rpx;
  174. font-weight: bold;
  175. }
  176. .page_header_content {
  177. display: flex;
  178. image {
  179. height: 100rpx;
  180. width: 30%;
  181. margin: 0 8rpx;
  182. }
  183. }
  184. }
  185. }
  186. .pharmacyDetails_title {
  187. font-size: 46rpx;
  188. font-weight: 550;
  189. text-align: center;
  190. }
  191. .page_item_wrap {
  192. position: relative;
  193. margin-top: 32rpx;
  194. .page_item {
  195. margin-top: 16rpx;
  196. margin-bottom: 124rpx;
  197. background: #fff;
  198. border-radius: 8rpx;
  199. margin: 0 20rpx;
  200. border: 2rpx solid #e5e9ed;
  201. position: relative;
  202. overflow: hidden;
  203. padding: 0 16rpx;
  204. .L {
  205. width: 40rpx;
  206. height: 40rpx;
  207. border-radius: 50%;
  208. background: #f9fafb;
  209. position: absolute;
  210. left: -20rpx;
  211. top: 68rpx;
  212. border: 2rpx solid #e5e9ed;
  213. }
  214. .R {
  215. width: 40rpx;
  216. height: 40rpx;
  217. border-radius: 50%;
  218. background: #f9fafb;
  219. position: absolute;
  220. float: right;
  221. right: -20rpx;
  222. top: 68rpx;
  223. border: 2rpx solid #e5e9ed;
  224. }
  225. .page_item_top {
  226. height: 88rpx;
  227. border-bottom: 2rpx dashed #e5e9ed;
  228. padding: 0 16rpx;
  229. .page_item_top-inner {
  230. display: flex;
  231. justify-content: space-between;
  232. align-items: center;
  233. height: 100%;
  234. .page_item_top_L {
  235. .L_text {
  236. font-size: 32rpx;
  237. font-weight: 700;
  238. }
  239. }
  240. .page_item_top_R {
  241. font-size: 32rpx;
  242. .L_iocn {
  243. color: rgb(7, 134, 60);
  244. font-size: 36rpx;
  245. font-weight: 700;
  246. }
  247. }
  248. }
  249. }
  250. .page_item_cont {
  251. min-height: 90rpx;
  252. padding: 0 16rpx;
  253. text-align: left;
  254. position: relative;
  255. .text_big {
  256. font-size: 32rpx;
  257. font-weight: 700;
  258. margin-top: 10rpx;
  259. p {
  260. font-weight: 700;
  261. line-height: 1.5;
  262. }
  263. }
  264. .line {
  265. height: 20rpx;
  266. width: 2rpx;
  267. border-left: 2rpx solid #e5e9ed;
  268. position: absolute;
  269. top: 82rpx;
  270. left: 40rpx;
  271. }
  272. .page_item_cont_T {
  273. padding-top: 28rpx;
  274. padding-bottom: 28rpx;
  275. font-size: 28rpx;
  276. .page_item_cont_title {
  277. height: 100%;
  278. font-size: 32rpx;
  279. display: flex;
  280. justify-content: space-between;
  281. align-items: center;
  282. }
  283. }
  284. .page_item_cont_B {
  285. padding-top: 28rpx;
  286. margin-bottom: 28rpx;
  287. .page_item_cont_title {
  288. font-size: 32rpx;
  289. display: flex;
  290. justify-content: space-between;
  291. align-items: center;
  292. }
  293. }
  294. .page_item_cont_C {
  295. margin-bottom: 28rpx;
  296. .page_item_cont_title_C {
  297. font-size: 32rpx;
  298. display: flex;
  299. justify-content: space-between;
  300. align-items: center;
  301. }
  302. }
  303. #infos {
  304. display: none;
  305. }
  306. }
  307. }
  308. .L-l {
  309. width: 2rpx;
  310. height: 40rpx;
  311. background: #f9fafb;
  312. position: absolute;
  313. left: 20rpx;
  314. top: 72rpx;
  315. }
  316. .R-l {
  317. width: 2rpx;
  318. height: 40rpx;
  319. background: #f9fafb;
  320. position: absolute;
  321. right: 20rpx;
  322. top: 72rpx;
  323. }
  324. }
  325. .cube-toolbar-item {
  326. width: 710rpx;
  327. height: 68rpx;
  328. line-height: 68rpx;
  329. position: fixed;
  330. left: 20rpx;
  331. bottom: 160rpx;
  332. border-radius: 8rpx;
  333. background: linear-gradient(to right, #72c172, #3bb197);
  334. font-size: 36rpx;
  335. color: #fff;
  336. text-align: center;
  337. }
  338. .btn-wrap {
  339. display: flex;
  340. justify-content: space-between;
  341. position: fixed;
  342. left: 20rpx;
  343. bottom: 160rpx;
  344. }
  345. .cube-toolbar-item1 {
  346. width: 350rpx;
  347. height: 68rpx;
  348. line-height: 68rpx;
  349. border-radius: 8rpx;
  350. margin: 0 5rpx;
  351. background: linear-gradient(to right, #72c172, #3bb197);
  352. font-size: 36rpx;
  353. color: #fff;
  354. text-align: center;
  355. }
  356. .foot_btn2 {
  357. position: fixed;
  358. bottom: 0;
  359. right: 20rpx;
  360. left: 20rpx;
  361. line-height: 66rpx;
  362. height: 100rpx;
  363. border-top: 2rpx solid #e5e9ed;
  364. background: #f9fafb;
  365. display: flex;
  366. justify-content: space-between;
  367. .btn2 {
  368. height: 66rpx;
  369. width: 100%;
  370. margin: 0 1%;
  371. background-image: linear-gradient(to right, #72c172, #3bb197);
  372. color: #fff;
  373. border-radius: 8rpx;
  374. font-size: 32rpx;
  375. margin-top: 16rpx;
  376. text-align: center;
  377. }
  378. .btn3 {
  379. height: 66rpx;
  380. width: 48%;
  381. margin: 0 1%;
  382. background-image: linear-gradient(to right, #72c172, #3bb197);
  383. color: #fff;
  384. border-radius: 8rpx;
  385. font-size: 32rpx;
  386. margin-top: 16rpx;
  387. text-align: center;
  388. }
  389. }
  390. }
  391. </style>