specimenCheckingEnd.vue 9.7 KB

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