specimenCheckingEnd.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  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.showLoading({
  65. mask: true,
  66. title: '加载中'
  67. })
  68. let postData = {
  69. gdId: this.msg.id,
  70. deptQrCode: this.msg.deptCode,
  71. }; //起点科室id,选择的科室ids
  72. post(`/api/addSpecimenRecordAndDept`, postData).then((res) => {
  73. uni.hideLoading();
  74. if (res.status == 200) {
  75. uni.navigateTo({
  76. url: `../scanning/scanning?type=${this.msg.type}&type1=${
  77. this.msg.type1
  78. }&id=${encodeURIComponent(JSON.stringify([this.msg.id]))}&deptCode=${
  79. this.msg.deptCode
  80. }&dept=${this.msg.dept}&speNum=${this.msg.speNum}&content=${this.msg.content}`,
  81. });
  82. } else {
  83. uni.showToast({
  84. icon: "none",
  85. title: res.msg || "接口获取数据失败!",
  86. });
  87. }
  88. });
  89. } else if (result.cancel) {
  90. console.log('用户点击取消');
  91. }
  92. }
  93. });
  94. },
  95. // 获取列表
  96. getList() {
  97. uni.showLoading({
  98. mask: true,
  99. title: '加载中'
  100. })
  101. let postData = {
  102. gdId: this.msg.id,
  103. deptQrCode: this.msg.deptCode,
  104. }; //起点科室id,选择的科室ids
  105. post(`/api/patientSpecimensNm`, postData).then((res) => {
  106. uni.hideLoading();
  107. uni.stopPullDownRefresh();
  108. if (res.status == 200) {
  109. this.num = res.num;
  110. this.list = res.data;
  111. } else {
  112. uni.showToast({
  113. icon: "none",
  114. title: res.msg || "接口获取数据失败!",
  115. });
  116. }
  117. });
  118. },
  119. // 返回
  120. goBack() {
  121. uni.navigateBack();
  122. },
  123. },
  124. onLoad(options) {
  125. console.log(options);
  126. options.id = JSON.parse(options.id)[0]
  127. this.msg = options;
  128. this.getList();
  129. // #ifdef APP-PLUS
  130. webHandle("no", "app");
  131. // #endif
  132. // #ifdef H5
  133. webHandle("no", "wx");
  134. // #endif
  135. },
  136. onPullDownRefresh() {
  137. this.getList();
  138. },
  139. };
  140. </script>
  141. <style lang="less" scoped>
  142. .specimenChecking {
  143. padding-bottom: 100rpx;
  144. .title {
  145. font-size: 48rpx;
  146. margin-top: 24rpx;
  147. margin-bottom: 24rpx;
  148. text-align: center;
  149. }
  150. .page_item_wrap {
  151. width: 100%;
  152. height: auto;
  153. box-sizing: border-box;
  154. position: relative;
  155. margin-bottom: 16rpx;
  156. .page_item {
  157. margin-top: 16rpx;
  158. margin-bottom: 124rpx;
  159. background: #fff;
  160. border-radius: 8rpx;
  161. margin: 0 20rpx;
  162. border: 2rpx solid #e5e9ed;
  163. position: relative;
  164. overflow: hidden;
  165. padding: 0 16rpx;
  166. .L {
  167. width: 40rpx;
  168. height: 40rpx;
  169. border-radius: 50%;
  170. background: #f9fafb;
  171. position: absolute;
  172. left: -20rpx;
  173. top: 68rpx;
  174. border: 2rpx solid #e5e9ed;
  175. }
  176. .R {
  177. width: 40rpx;
  178. height: 40rpx;
  179. border-radius: 50%;
  180. background: #f9fafb;
  181. position: absolute;
  182. float: right;
  183. right: -20rpx;
  184. top: 68rpx;
  185. border: 2rpx solid #e5e9ed;
  186. }
  187. .starting {
  188. width: 50rpx;
  189. height: 50rpx;
  190. color: #fff;
  191. background: #49b856;
  192. display: inline-block;
  193. border-radius: 50%;
  194. text-align: center;
  195. line-height: 46rpx;
  196. font-size: 32rpx;
  197. margin-right: 6rpx;
  198. }
  199. .End {
  200. width: 50rpx;
  201. height: 50rpx;
  202. color: #fff;
  203. background: #39b199;
  204. display: inline-block;
  205. border-radius: 50%;
  206. text-align: center;
  207. line-height: 46rpx;
  208. font-size: 32rpx;
  209. margin-right: 6rpx;
  210. }
  211. .page_item_top {
  212. height: 88rpx;
  213. // border-bottom: 2rpx dashed #e5e9ed;
  214. padding: 0 16rpx;
  215. .page_item_top-inner {
  216. display: flex;
  217. justify-content: space-between;
  218. align-items: center;
  219. height: 100%;
  220. .page_item_top_L {
  221. .emergencys {
  222. background: #ff3b53 !important;
  223. width: 124rpx !important;
  224. }
  225. .emergency {
  226. background: #ff3b53 !important;
  227. }
  228. .emergency1 {
  229. background: #49b856 !important;
  230. }
  231. .page_item_cont_start {
  232. text-align: center;
  233. height: 44rpx;
  234. width: 104rpx;
  235. line-height: 44rpx;
  236. border-radius: 8rpx;
  237. background: #49b856;
  238. color: #fff;
  239. display: inline-block;
  240. }
  241. .L_time {
  242. color: #6cc076;
  243. font-size: 32rpx;
  244. }
  245. .L_text {
  246. font-size: 32rpx;
  247. font-weight: 700;
  248. }
  249. }
  250. .page_item_top_R {
  251. font-size: 32rpx;
  252. .L_iocn {
  253. color: rgb(7, 134, 60);
  254. font-size: 36rpx;
  255. font-weight: 700;
  256. }
  257. }
  258. }
  259. }
  260. .page_item_cont {
  261. min-height: 90rpx;
  262. padding: 0 16rpx;
  263. text-align: left;
  264. position: relative;
  265. .text_big {
  266. font-size: 32rpx;
  267. font-weight: 700;
  268. margin-top: 10rpx;
  269. p {
  270. font-weight: 700;
  271. line-height: 1.5;
  272. }
  273. }
  274. .page_item_cont_T {
  275. padding-top: 28rpx;
  276. font-size: 28rpx;
  277. .page_item_cont_title {
  278. height: 100%;
  279. font-size: 32rpx;
  280. display: flex;
  281. justify-content: space-between;
  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. }
  292. .page_item_cont_title1 {
  293. height: 60rpx;
  294. line-height: 60rpx;
  295. font-size: 32rpx;
  296. padding-left: 64rpx;
  297. }
  298. }
  299. }
  300. .page_item_foot {
  301. border-top: 2rpx dashed #e5e9ed;
  302. border-bottom: 2rpx dashed #e5e9ed;
  303. padding: 28rpx 16rpx;
  304. text-align: left;
  305. .page_item_foot_text {
  306. font-size: 32rpx;
  307. margin-bottom: 20rpx;
  308. .text1 {
  309. color: rgb(102, 102, 102);
  310. }
  311. .text2 {
  312. float: right;
  313. font-weight: 700;
  314. }
  315. }
  316. }
  317. #infos {
  318. display: none;
  319. }
  320. .page_item_infos {
  321. padding-bottom: 20rpx;
  322. border-bottom: 2rpx dashed #e5e9ed;
  323. .page_item_info2 {
  324. text-align: left;
  325. line-height: 60rpx;
  326. font-size: 32rpx;
  327. padding-left: 16rpx;
  328. .page_item_foot_text {
  329. font-size: 32rpx;
  330. margin-bottom: 20rpx;
  331. .text1 {
  332. color: rgb(102, 102, 102);
  333. }
  334. .text2 {
  335. float: right;
  336. font-weight: 700;
  337. }
  338. }
  339. }
  340. }
  341. }
  342. .L-l {
  343. width: 2rpx;
  344. height: 40rpx;
  345. background: #f9fafb;
  346. position: absolute;
  347. left: 20rpx;
  348. top: 72rpx;
  349. }
  350. .R-l {
  351. width: 2rpx;
  352. height: 40rpx;
  353. background: #f9fafb;
  354. position: absolute;
  355. right: 20rpx;
  356. top: 72rpx;
  357. }
  358. }
  359. .foot_btn2 {
  360. position: fixed;
  361. bottom: 0;
  362. width: 100vw;
  363. padding: 0 20rpx;
  364. box-sizing: border-box;
  365. line-height: 66rpx;
  366. height: 100rpx;
  367. border-top: 2rpx solid #e5e9ed;
  368. background: #f9fafb;
  369. text-align: center;
  370. display: flex;
  371. justify-content: center;
  372. align-items: center;
  373. .btn2 {
  374. height: 66rpx;
  375. flex: 1;
  376. margin: 16rpx 16rpx 0;
  377. background-image: linear-gradient(to right, #72c172, #3bb197);
  378. color: #fff;
  379. border-radius: 8rpx;
  380. font-size: 32rpx;
  381. }
  382. }
  383. }
  384. </style>