scannedDepartmentSpecimensDetail.vue 9.3 KB

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