checkAfterScanning.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. <template>
  2. <view class="checkAfterScanning">
  3. <view class="checkAfterScanning_title">标本核对</view>
  4. <view class="page_item_cont">
  5. <view class="page_item_cont_T">
  6. <view class="page_item_cont_title">
  7. <view> 工单单号 </view>
  8. <view class="text_big">{{info.gdCode}}</view>
  9. </view>
  10. <view class="page_item_cont_title">
  11. <view class="text_title"> 科室名称 </view>
  12. <view class="text_big">{{info.LCDept}}</view>
  13. </view>
  14. <view class="page_item_cont_title">
  15. <view> 扫描标本数量 </view>
  16. <view class="text_big" @click="goToSpeDetail()"><text class="underline">{{info.total}}</text>只</view>
  17. </view>
  18. <view class="page_item_cont_title2">
  19. 检验科室标本数量:
  20. </view>
  21. <view class="page_item_cont_title" v-for="(item, i) in info.data" :key="i">
  22. <view>{{item[1]}}</view>
  23. <view class="text_big" @click="goToSpeDetail(item[1],item[2])"><text class="underline">{{item[3]}}</text>只</view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="foot_btn_spe">
  28. <view class="btn1" @click="Scanning_complete()">核对完成</view>
  29. <view class="btn3" @click="goBack">返回</view>
  30. </view>
  31. <!-- 弹窗 -->
  32. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  33. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  34. <!-- 弹窗 -->
  35. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  36. @ok="ok2" @know="know2" @cancel="cancel2" :operate="models2.operate"></showModel>
  37. </view>
  38. </template>
  39. <script>
  40. import {
  41. get,
  42. post,
  43. SM,
  44. webHandle
  45. } from "../../http/http.js";
  46. export default {
  47. data() {
  48. return {
  49. handoverId: undefined,
  50. handoverDeptId: undefined,
  51. info: {},
  52. wcFlag: false,
  53. queryObj: {}, //路由传递过来的数据
  54. // 弹窗model
  55. models: {
  56. disjunctor: false,
  57. },
  58. // 完成扫描弹窗model1
  59. models2: {
  60. disjunctor: false,
  61. },
  62. };
  63. },
  64. methods: {
  65. // 获取核对信息
  66. getInfo(gdId){
  67. uni.showLoading({
  68. title: '加载中',
  69. mask: true
  70. });
  71. post("/api/specimensCheck", {gdIds:gdId}).then((res) => {
  72. uni.hideLoading();
  73. if (res.status == 200) {
  74. console.log(res)
  75. res.LCDept = res.LCDept.join(',');
  76. this.info = res;
  77. } else {
  78. uni.showToast({
  79. icon: "none",
  80. title: res.msg || "接口获取数据失败!",
  81. });
  82. }
  83. })
  84. },
  85. // 返回
  86. goBack() {
  87. uni.navigateBack();
  88. },
  89. // 业务页面控制-标本-收取时需扫描二维码
  90. beforeScanning(fn) {
  91. this.handoverId = undefined;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
  92. this.handoverDeptId = undefined;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
  93. // 判断开关
  94. const userData = uni.getStorageSync("userData");
  95. console.log('userData', userData);
  96. uni.showLoading({
  97. title: "加载中",
  98. mask: true,
  99. });
  100. // 查询标本配送业务
  101. post("/simple/data/fetchDataList/taskType",{
  102. "idx": 0,
  103. "sum": 10,
  104. "taskType": {
  105. "simpleQuery": true,
  106. "hosId": {
  107. "id": userData.user.currentHospital.id
  108. },
  109. "associationType": {
  110. "key": "association_types",
  111. "value": "specimen"
  112. }
  113. }
  114. }).then((res) => {
  115. if (res.status == 200) {
  116. let taskTypeDTO = res.list[0];
  117. if(taskTypeDTO){
  118. // 查询业务页面控制-标本
  119. post("/simple/data/fetchDataList/taskTypeConfig",{
  120. "idx": 0,
  121. "sum": 10,
  122. "taskTypeConfig": {
  123. taskTypeDTO,
  124. }
  125. }).then((res) => {
  126. if (res.status == 200) {
  127. let data = res.list[0];
  128. if(data){
  129. // 收取时需扫描二维码
  130. if(data.arriveScanCode == 1){
  131. // 扫描科室二维码
  132. uni.hideLoading();
  133. SM().then((content) => {
  134. let postData = {
  135. code: content,
  136. type: 'specimen',
  137. hosId: userData.user.currentHospital.id,
  138. orderId: +this.queryObj.id,
  139. };
  140. console.log(postData)
  141. uni.showLoading({
  142. title: "加载中",
  143. mask: true,
  144. });
  145. post("/workerOrder/arriveScanCheck", postData).then((res) => {
  146. uni.hideLoading();
  147. if (res.state == 200) {
  148. this.handoverId = res.handover;//扫动态码或静态码,后端会返回交接人,核对完成接口传过去
  149. this.handoverDeptId = res.handoverDeptId;//扫动态码或静态码,后端会返回科室,核对完成接口传过去
  150. fn();
  151. } else {
  152. uni.showToast({
  153. icon: "none",
  154. title: res.msg || "接口获取数据失败!",
  155. });
  156. }
  157. })
  158. }).catch(err => {
  159. });
  160. }else{
  161. uni.hideLoading();
  162. fn();
  163. }
  164. }else{
  165. uni.hideLoading();
  166. fn();
  167. }
  168. } else {
  169. uni.hideLoading();
  170. uni.showToast({
  171. icon: "none",
  172. title: res.msg || "接口获取数据失败!",
  173. });
  174. }
  175. });
  176. }else{
  177. uni.hideLoading();
  178. uni.showToast({
  179. icon: "none",
  180. title: "未查询到标本配送业务!",
  181. });
  182. }
  183. } else {
  184. uni.hideLoading();
  185. uni.showToast({
  186. icon: "none",
  187. title: res.msg || "接口获取数据失败!",
  188. });
  189. }
  190. });
  191. },
  192. // 完成核对
  193. Scanning_complete() {
  194. this.beforeScanning(() => {
  195. if (
  196. this.queryObj.type1 == "plan-spe-ddd-2" ||
  197. this.queryObj.type1 == "spe-ddd-2"
  198. ) {
  199. this.wcFlag = true;
  200. this.models = {
  201. disjunctor: true,
  202. title: "提示",
  203. content: "是否确定标本已核对完成?",
  204. icon: "warn",
  205. operate: {
  206. ok: "确定",
  207. cancel: "取消",
  208. },
  209. };
  210. } else if (
  211. this.queryObj.type1 == "plan-spe-dsd-2" ||
  212. this.queryObj.type1 == "plan-spe-dsd-3" ||
  213. this.queryObj.type1 == "spe-dsd-2" ||
  214. this.queryObj.type1 == "spe-dsd-3"
  215. ) {
  216. this.wcFlag = false;
  217. this.models = {
  218. disjunctor: true,
  219. title: "提示",
  220. content: "是否确定标本已核对完成?",
  221. icon: "warn",
  222. operate: {
  223. ok: "确定",
  224. cancel: "取消",
  225. },
  226. };
  227. } else {
  228. this.gotoOver();
  229. }
  230. });
  231. },
  232. // 跳转完成工单页面
  233. gotoOver() {
  234. uni.navigateTo({
  235. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  236. this.queryObj.type1
  237. }&id=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${
  238. this.queryObj.deptCode
  239. }&dept=${this.queryObj.dept}&speNum=${this.queryObj.speNum}&content=${this.queryObj.content}`,
  240. });
  241. },
  242. // 确定
  243. ok() {
  244. this.models.disjunctor = false;
  245. let postData = {
  246. ids: [this.queryObj.id],
  247. sign: true,
  248. deptQrCode: this.queryObj.deptCode
  249. };
  250. uni.showLoading({
  251. title: '加载中',
  252. mask: true
  253. });
  254. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  255. uni.hideLoading();
  256. if (ress.status == 200) {
  257. if (this.wcFlag) {
  258. //正常完成扫描
  259. this.overFinish()
  260. } else {
  261. this.gotoOver();
  262. }
  263. } else if (ress.status == 1000035) {
  264. let content = '';
  265. if (this.queryObj.type1 === 'spe-ddd-2' || this.queryObj.type1 === 'plan-spe-ddd-2') {
  266. //待到达
  267. content =
  268. `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
  269. } else {
  270. //待送达
  271. this.content =
  272. `本工单已签到<strong class="red">${ress.scanSet?ress.scanSet.join('、'):''}</strong>,剩余需签到科室<strong class="red">${ress.notScanSet?ress.notScanSet.join('、'):''}</strong>,总签收<strong class="red">${ress.totalAcceptance}</strong>只,剩余<strong class="red">${ress.notAcceptance}</strong>只未签收,您确定完成工单吗?`;
  273. content =
  274. `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
  275. }
  276. // 取消弹窗 2022年10月10日
  277. this.ok2();
  278. // this.models2 = {
  279. // disjunctor: true,
  280. // title: "提示",
  281. // content,
  282. // icon: "warn",
  283. // operate: {
  284. // ok: "确定",
  285. // cancel: "取消",
  286. // },
  287. // };
  288. } else {
  289. uni.showToast({
  290. icon: "none",
  291. title: ress.msg || "接口获取数据失败!",
  292. });
  293. }
  294. })
  295. },
  296. // 取消
  297. cancel() {
  298. this.models.disjunctor = false;
  299. },
  300. // 确定
  301. ok2() {
  302. this.models2.disjunctor = false;
  303. let postData = {
  304. ids: [this.queryObj.id],
  305. deptQrCode: this.queryObj.deptCode
  306. };
  307. uni.showLoading({
  308. title: '加载中',
  309. mask: true
  310. });
  311. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  312. uni.hideLoading();
  313. if (ress.status == 200) {
  314. if (this.wcFlag) {
  315. this.overFinish()
  316. } else {
  317. this.gotoOver();
  318. }
  319. } else {
  320. uni.showToast({
  321. icon: "none",
  322. title: ress.msg || "接口获取数据失败!",
  323. });
  324. }
  325. })
  326. },
  327. // 取消
  328. cancel2() {
  329. this.models2.disjunctor = false;
  330. },
  331. know2() {
  332. this.models2.disjunctor = false;
  333. uni.navigateTo({
  334. url: "../receiptpage/receiptpage",
  335. });
  336. },
  337. // 正常完成扫描
  338. overFinish() {
  339. let data = {
  340. type: this.queryObj.type1,
  341. ids: [this.queryObj.id],
  342. };
  343. //只要是标本轮巡1对多或者多对多
  344. // plan-spe-dsd-2 1对多
  345. // plan-spe-dsd-3 多对多
  346. if (
  347. this.queryObj.type1 === "plan-spe-ddd-2" ||
  348. this.queryObj.type1 === "plan-spe-dsd-2" ||
  349. this.queryObj.type1 === "plan-spe-dsd-3"
  350. ) {
  351. post("/workerOrder/finishPlanSpes", data).then((res) => {
  352. // uni.hideLoading()
  353. if (res.status == 200) {
  354. this.models2 = {
  355. disjunctor: true,
  356. title: "提示",
  357. content: `完成扫描成功`,
  358. icon: "success",
  359. operate: {
  360. know: "知道了",
  361. },
  362. };
  363. } else {
  364. uni.showToast({
  365. icon: "none",
  366. title: res.msg || "接口获取数据失败!",
  367. });
  368. }
  369. });
  370. } else {
  371. data.handover = this.handoverId || undefined;
  372. data.handoverDeptId = this.handoverDeptId || undefined;
  373. post("/workerOrder/finishSpes", data).then((res) => {
  374. // uni.hideLoading()
  375. if (res.status == 200) {
  376. uni.navigateTo({
  377. url: "../receiptpage/receiptpage",
  378. });
  379. } else {
  380. uni.showToast({
  381. icon: "none",
  382. title: res.msg || "接口获取数据失败!",
  383. });
  384. }
  385. });
  386. }
  387. },
  388. // 跳转到已扫描标本详情页
  389. goToSpeDetail(deptName='', qrCode=''){
  390. uni.navigateTo({
  391. url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${qrCode}&isScan=1&specimensCheck=1`,
  392. });
  393. }
  394. },
  395. onLoad(options) {
  396. console.log(options);
  397. this.queryObj = options;
  398. this.getInfo(this.queryObj.id);
  399. // #ifdef APP-PLUS
  400. webHandle("no", "app");
  401. // #endif
  402. // #ifdef H5
  403. webHandle("no", "wx");
  404. // #endif
  405. },
  406. };
  407. </script>
  408. <style lang="less" scoped>
  409. .checkAfterScanning {
  410. .checkAfterScanning_title {
  411. padding: 50rpx 0;
  412. font-size: 46rpx;
  413. font-weight: 550;
  414. text-align: center;
  415. border-bottom: 1px solid #ccc;
  416. }
  417. .page_item_cont {
  418. min-height: 90rpx;
  419. padding: 0 20rpx;
  420. text-align: left;
  421. position: relative;
  422. .text_title{
  423. flex-shrink: 0;
  424. margin-right: 16rpx;
  425. }
  426. .text_big {
  427. font-size: 32rpx;
  428. font-weight: 700;
  429. margin-top: 10rpx;
  430. .underline{
  431. text-decoration: underline;
  432. }
  433. }
  434. .page_item_cont_T {
  435. padding-top: 28rpx;
  436. padding-bottom: 28rpx;
  437. font-size: 28rpx;
  438. .page_item_cont_title {
  439. height: 100%;
  440. font-size: 32rpx;
  441. display: flex;
  442. justify-content: space-between;
  443. align-items: center;
  444. }
  445. .page_item_cont_title2{
  446. margin-top: 36rpx;
  447. margin-bottom: 18rpx;
  448. height: 100%;
  449. font-size: 32rpx;
  450. font-weight: bold;
  451. display: flex;
  452. align-items: center;
  453. }
  454. }
  455. .page_item_cont_B {
  456. padding-top: 28rpx;
  457. margin-bottom: 28rpx;
  458. .page_item_cont_title {
  459. font-size: 32rpx;
  460. display: flex;
  461. justify-content: space-between;
  462. }
  463. .page_item_cont_title1 {
  464. height: 60rpx;
  465. line-height: 60rpx;
  466. font-size: 32rpx;
  467. padding-left: 64rpx;
  468. }
  469. }
  470. }
  471. .foot_btn {
  472. line-height: 88rpx;
  473. height: 100rpx;
  474. margin-top: 40rpx;
  475. display: flex;
  476. justify-content: center;
  477. .btn1,
  478. .btn2,
  479. .btn3 {
  480. height: 88rpx;
  481. flex: 1;
  482. margin: 0 1%;
  483. background-image: linear-gradient(to right, #72c172, #3bb197);
  484. color: #fff;
  485. border-radius: 8rpx;
  486. font-size: 32rpx;
  487. margin-top: 16rpx;
  488. text-align: center;
  489. }
  490. }
  491. .foot_btn_spe {
  492. line-height: 88rpx;
  493. height: 100rpx;
  494. margin-top: 40rpx;
  495. text-align: center;
  496. display: flex;
  497. justify-content: space-between;
  498. flex-wrap: wrap;
  499. &::after {
  500. content: '';
  501. flex: 1;
  502. }
  503. view {
  504. height: 88rpx;
  505. width: 48%;
  506. margin: 0 1%;
  507. background-image: linear-gradient(to right, #72c172, #3bb197);
  508. color: #fff;
  509. border-radius: 8rpx;
  510. font-size: 32rpx;
  511. margin-top: 16rpx;
  512. }
  513. }
  514. }
  515. </style>