scannedDepartmentSpecimens.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369
  1. <template>
  2. <view class="specimenChecking">
  3. <view class="page_item_wrap" v-for="item in list" :key="item.deptId" @click="gotoDetail(item)">
  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.deptName}}</view>
  9. </view>
  10. <view class="page_item_top_R">
  11. <view class="L_iocn">{{item.count}}</view>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="foot_btn2">
  18. <view class="btn2" @click="goBack()">返回</view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import {
  24. get,
  25. post,
  26. webHandle
  27. } from "../../http/http.js";
  28. export default {
  29. data() {
  30. return {
  31. list: [],
  32. msg: {}, //页面展示信息
  33. };
  34. },
  35. methods: {
  36. // 返回
  37. goBack() {
  38. uni.navigateBack();
  39. },
  40. // 获取列表
  41. getList() {
  42. uni.showLoading({
  43. mask: true,
  44. title: '加载中'
  45. })
  46. let postData = {
  47. gdId: this.msg.uuid
  48. };
  49. post(`/api/receiveSpecimensDeptNum`, postData).then((res) => {
  50. uni.hideLoading();
  51. uni.stopPullDownRefresh();
  52. if (res.status == 200) {
  53. this.list = res.data;
  54. } else {
  55. uni.showToast({
  56. icon: "none",
  57. title: "请求失败!",
  58. });
  59. }
  60. });
  61. },
  62. // 跳转到详情页
  63. gotoDetail(item) {
  64. console.log(item);
  65. uni.navigateTo({
  66. url: `../scannedDepartmentSpecimensDetail/scannedDepartmentSpecimensDetail?workOrderId=${this.msg.uuid}&endDeptId=${item.deptId}`,
  67. });
  68. },
  69. },
  70. onLoad(options) {
  71. console.log(options);
  72. this.msg = JSON.parse(options.infoDATA);
  73. this.getList();
  74. // #ifdef APP-PLUS
  75. webHandle("no", "app");
  76. // #endif
  77. // #ifdef H5
  78. webHandle("no", "wx");
  79. // #endif
  80. },
  81. onPullDownRefresh() {
  82. this.getList();
  83. },
  84. };
  85. </script>
  86. <style lang="less" scoped>
  87. .specimenChecking {
  88. padding-bottom: 100rpx;
  89. .title {
  90. font-size: 48rpx;
  91. margin-top: 24rpx;
  92. margin-bottom: 24rpx;
  93. text-align: center;
  94. }
  95. .page_item_wrap {
  96. width: 100%;
  97. height: auto;
  98. box-sizing: border-box;
  99. position: relative;
  100. margin-bottom: 16rpx;
  101. .page_item {
  102. margin-top: 16rpx;
  103. margin-bottom: 124rpx;
  104. background: #fff;
  105. border-radius: 8rpx;
  106. margin: 0 20rpx;
  107. border: 2rpx solid #e5e9ed;
  108. position: relative;
  109. overflow: hidden;
  110. padding: 0 16rpx;
  111. .L {
  112. width: 40rpx;
  113. height: 40rpx;
  114. border-radius: 50%;
  115. background: #f9fafb;
  116. position: absolute;
  117. left: -20rpx;
  118. top: 68rpx;
  119. border: 2rpx solid #e5e9ed;
  120. }
  121. .R {
  122. width: 40rpx;
  123. height: 40rpx;
  124. border-radius: 50%;
  125. background: #f9fafb;
  126. position: absolute;
  127. float: right;
  128. right: -20rpx;
  129. top: 68rpx;
  130. border: 2rpx solid #e5e9ed;
  131. }
  132. .starting {
  133. width: 50rpx;
  134. height: 50rpx;
  135. color: #fff;
  136. background: #49b856;
  137. display: inline-block;
  138. border-radius: 50%;
  139. text-align: center;
  140. line-height: 46rpx;
  141. font-size: 32rpx;
  142. margin-right: 6rpx;
  143. }
  144. .End {
  145. width: 50rpx;
  146. height: 50rpx;
  147. color: #fff;
  148. background: #39b199;
  149. display: inline-block;
  150. border-radius: 50%;
  151. text-align: center;
  152. line-height: 46rpx;
  153. font-size: 32rpx;
  154. margin-right: 6rpx;
  155. }
  156. .page_item_top {
  157. height: 88rpx;
  158. // border-bottom: 2rpx dashed #e5e9ed;
  159. padding: 0 16rpx;
  160. .page_item_top-inner {
  161. display: flex;
  162. justify-content: space-between;
  163. align-items: center;
  164. height: 100%;
  165. .page_item_top_L {
  166. .emergencys {
  167. background: #ff3b53 !important;
  168. width: 124rpx !important;
  169. }
  170. .emergency {
  171. background: #ff3b53 !important;
  172. }
  173. .emergency1 {
  174. background: #49b856 !important;
  175. }
  176. .page_item_cont_start {
  177. text-align: center;
  178. height: 44rpx;
  179. width: 104rpx;
  180. line-height: 44rpx;
  181. border-radius: 8rpx;
  182. background: #49b856;
  183. color: #fff;
  184. display: inline-block;
  185. }
  186. .L_time {
  187. color: #6cc076;
  188. font-size: 32rpx;
  189. }
  190. .L_text {
  191. font-size: 32rpx;
  192. font-weight: 700;
  193. }
  194. }
  195. .page_item_top_R {
  196. font-size: 32rpx;
  197. .L_iocn {
  198. color: rgb(7, 134, 60);
  199. font-size: 36rpx;
  200. font-weight: 700;
  201. }
  202. }
  203. }
  204. }
  205. .page_item_cont {
  206. min-height: 90rpx;
  207. padding: 0 16rpx;
  208. text-align: left;
  209. position: relative;
  210. .text_big {
  211. font-size: 32rpx;
  212. font-weight: 700;
  213. margin-top: 10rpx;
  214. p {
  215. font-weight: 700;
  216. line-height: 1.5;
  217. }
  218. }
  219. .page_item_cont_T {
  220. padding-top: 28rpx;
  221. font-size: 28rpx;
  222. .page_item_cont_title {
  223. height: 100%;
  224. font-size: 32rpx;
  225. display: flex;
  226. justify-content: space-between;
  227. }
  228. }
  229. .page_item_cont_B {
  230. padding-top: 28rpx;
  231. margin-bottom: 28rpx;
  232. .page_item_cont_title {
  233. font-size: 32rpx;
  234. display: flex;
  235. justify-content: space-between;
  236. }
  237. .page_item_cont_title1 {
  238. height: 60rpx;
  239. line-height: 60rpx;
  240. font-size: 32rpx;
  241. padding-left: 64rpx;
  242. }
  243. }
  244. }
  245. .page_item_foot {
  246. border-top: 2rpx dashed #e5e9ed;
  247. border-bottom: 2rpx dashed #e5e9ed;
  248. padding: 28rpx 16rpx;
  249. text-align: left;
  250. .page_item_foot_text {
  251. font-size: 32rpx;
  252. margin-bottom: 20rpx;
  253. .text1 {
  254. color: rgb(102, 102, 102);
  255. }
  256. .text2 {
  257. float: right;
  258. font-weight: 700;
  259. }
  260. }
  261. }
  262. #infos {
  263. display: none;
  264. }
  265. .page_item_infos {
  266. padding-bottom: 20rpx;
  267. border-bottom: 2rpx dashed #e5e9ed;
  268. .page_item_info2 {
  269. text-align: left;
  270. line-height: 60rpx;
  271. font-size: 32rpx;
  272. padding-left: 16rpx;
  273. .page_item_foot_text {
  274. font-size: 32rpx;
  275. margin-bottom: 20rpx;
  276. .text1 {
  277. color: rgb(102, 102, 102);
  278. }
  279. .text2 {
  280. float: right;
  281. font-weight: 700;
  282. }
  283. }
  284. }
  285. }
  286. }
  287. .L-l {
  288. width: 2rpx;
  289. height: 40rpx;
  290. background: #f9fafb;
  291. position: absolute;
  292. left: 20rpx;
  293. top: 72rpx;
  294. }
  295. .R-l {
  296. width: 2rpx;
  297. height: 40rpx;
  298. background: #f9fafb;
  299. position: absolute;
  300. right: 20rpx;
  301. top: 72rpx;
  302. }
  303. }
  304. .foot_btn2 {
  305. position: fixed;
  306. bottom: 0;
  307. width: 100vw;
  308. padding: 0 20rpx;
  309. box-sizing: border-box;
  310. line-height: 66rpx;
  311. height: 100rpx;
  312. border-top: 2rpx solid #e5e9ed;
  313. background: #f9fafb;
  314. text-align: center;
  315. display: flex;
  316. justify-content: center;
  317. align-items: center;
  318. .btn2 {
  319. height: 66rpx;
  320. flex: 1;
  321. margin: 16rpx 16rpx 0;
  322. background-image: linear-gradient(to right, #72c172, #3bb197);
  323. color: #fff;
  324. border-radius: 8rpx;
  325. font-size: 32rpx;
  326. }
  327. }
  328. }
  329. </style>