checkAfterScanning.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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. info: {},
  50. wcFlag: false,
  51. queryObj: {}, //路由传递过来的数据
  52. // 弹窗model
  53. models: {
  54. disjunctor: false,
  55. },
  56. // 完成扫描弹窗model1
  57. models2: {
  58. disjunctor: false,
  59. },
  60. };
  61. },
  62. methods: {
  63. // 获取核对信息
  64. getInfo(gdId){
  65. uni.showLoading({
  66. title: '加载中',
  67. mask: true
  68. });
  69. post("/api/specimensCheck", {gdIds:gdId}).then((res) => {
  70. uni.hideLoading();
  71. if (res.status == 200) {
  72. console.log(res)
  73. res.LCDept = res.LCDept.join(',');
  74. this.info = res;
  75. } else {
  76. uni.showToast({
  77. icon: "none",
  78. title: "请求失败!",
  79. });
  80. }
  81. })
  82. },
  83. // 返回
  84. goBack() {
  85. uni.navigateBack();
  86. },
  87. // 完成核对
  88. Scanning_complete() {
  89. if (
  90. this.queryObj.type1 == "plan-spe-ddd-2" ||
  91. this.queryObj.type1 == "spe-ddd-2"
  92. ) {
  93. this.wcFlag = true;
  94. this.models = {
  95. disjunctor: true,
  96. title: "提示",
  97. content: "是否确定标本已核对完成?",
  98. icon: "warn",
  99. operate: {
  100. ok: "确定",
  101. cancel: "取消",
  102. },
  103. };
  104. } else if (
  105. this.queryObj.type1 == "plan-spe-dsd-2" ||
  106. this.queryObj.type1 == "plan-spe-dsd-3" ||
  107. this.queryObj.type1 == "spe-dsd-2" ||
  108. this.queryObj.type1 == "spe-dsd-3"
  109. ) {
  110. this.wcFlag = false;
  111. this.models = {
  112. disjunctor: true,
  113. title: "提示",
  114. content: "是否确定标本已核对完成?",
  115. icon: "warn",
  116. operate: {
  117. ok: "确定",
  118. cancel: "取消",
  119. },
  120. };
  121. } else {
  122. this.gotoOver();
  123. }
  124. },
  125. // 跳转完成工单页面
  126. gotoOver() {
  127. uni.navigateTo({
  128. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  129. this.queryObj.type1
  130. }&id=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${
  131. this.queryObj.deptCode
  132. }&dept=${this.queryObj.dept}&speNum=${this.queryObj.speNum}&content=${this.queryObj.content}`,
  133. });
  134. },
  135. // 确定
  136. ok() {
  137. this.models.disjunctor = false;
  138. let postData = {
  139. ids: [this.queryObj.id],
  140. sign: true,
  141. deptQrCode: this.queryObj.deptCode
  142. };
  143. uni.showLoading({
  144. title: '加载中',
  145. mask: true
  146. });
  147. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  148. uni.hideLoading();
  149. if (ress.status == 200) {
  150. if (this.wcFlag) {
  151. //正常完成扫描
  152. this.overFinish()
  153. } else {
  154. this.gotoOver();
  155. }
  156. } else if (ress.status == 1000035) {
  157. let content = '';
  158. if (this.queryObj.type1 === 'spe-ddd-2' || this.queryObj.type1 === 'plan-spe-ddd-2') {
  159. //待到达
  160. content =
  161. `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
  162. } else {
  163. //待送达
  164. this.content =
  165. `本工单已签到<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>只未签收,您确定完成工单吗?`;
  166. content =
  167. `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
  168. }
  169. // 取消弹窗 2022年10月10日
  170. this.ok2();
  171. // this.models2 = {
  172. // disjunctor: true,
  173. // title: "提示",
  174. // content,
  175. // icon: "warn",
  176. // operate: {
  177. // ok: "确定",
  178. // cancel: "取消",
  179. // },
  180. // };
  181. } else {
  182. uni.showToast({
  183. icon: "none",
  184. title: "请求失败!",
  185. });
  186. }
  187. })
  188. },
  189. // 取消
  190. cancel() {
  191. this.models.disjunctor = false;
  192. },
  193. // 确定
  194. ok2() {
  195. this.models2.disjunctor = false;
  196. let postData = {
  197. ids: [this.queryObj.id],
  198. deptQrCode: this.queryObj.deptCode
  199. };
  200. uni.showLoading({
  201. title: '加载中',
  202. mask: true
  203. });
  204. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  205. uni.hideLoading();
  206. if (ress.status == 200) {
  207. if (this.wcFlag) {
  208. this.overFinish()
  209. } else {
  210. this.gotoOver();
  211. }
  212. } else {
  213. uni.showToast({
  214. icon: "none",
  215. title: "请求失败!",
  216. });
  217. }
  218. })
  219. },
  220. // 取消
  221. cancel2() {
  222. this.models2.disjunctor = false;
  223. },
  224. know2() {
  225. this.models2.disjunctor = false;
  226. uni.navigateTo({
  227. url: "../receiptpage/receiptpage",
  228. });
  229. },
  230. // 正常完成扫描
  231. overFinish() {
  232. let data = {
  233. type: this.queryObj.type1,
  234. ids: [this.queryObj.id],
  235. };
  236. //只要是标本轮巡1对多或者多对多
  237. // plan-spe-dsd-2 1对多
  238. // plan-spe-dsd-3 多对多
  239. if (
  240. this.queryObj.type1 === "plan-spe-ddd-2" ||
  241. this.queryObj.type1 === "plan-spe-dsd-2" ||
  242. this.queryObj.type1 === "plan-spe-dsd-3"
  243. ) {
  244. post("/workerOrder/finishPlanSpes", data).then((res) => {
  245. // uni.hideLoading()
  246. if (res.status == 200) {
  247. this.models2 = {
  248. disjunctor: true,
  249. title: "提示",
  250. content: `完成扫描成功`,
  251. icon: "success",
  252. operate: {
  253. know: "知道了",
  254. },
  255. };
  256. } else {
  257. uni.showToast({
  258. icon: "none",
  259. title: "请求失败!",
  260. });
  261. }
  262. });
  263. } else {
  264. post("/workerOrder/finishSpes", data).then((res) => {
  265. // uni.hideLoading()
  266. if (res.status == 200) {
  267. uni.navigateTo({
  268. url: "../receiptpage/receiptpage",
  269. });
  270. } else {
  271. uni.showToast({
  272. icon: "none",
  273. title: "请求失败!",
  274. });
  275. }
  276. });
  277. }
  278. },
  279. // 跳转到已扫描标本详情页
  280. goToSpeDetail(deptName='', qrCode=''){
  281. uni.navigateTo({
  282. url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${qrCode}&isScan=1&specimensCheck=1`,
  283. });
  284. }
  285. },
  286. onLoad(options) {
  287. console.log(options);
  288. this.queryObj = options;
  289. this.getInfo(this.queryObj.id);
  290. // #ifdef APP-PLUS
  291. webHandle("no", "app");
  292. // #endif
  293. // #ifdef H5
  294. webHandle("no", "wx");
  295. // #endif
  296. },
  297. };
  298. </script>
  299. <style lang="less" scoped>
  300. .checkAfterScanning {
  301. .checkAfterScanning_title {
  302. padding: 50rpx 0;
  303. font-size: 46rpx;
  304. font-weight: 550;
  305. text-align: center;
  306. border-bottom: 1px solid #ccc;
  307. }
  308. .page_item_cont {
  309. min-height: 90rpx;
  310. padding: 0 20rpx;
  311. text-align: left;
  312. position: relative;
  313. .text_title{
  314. flex-shrink: 0;
  315. margin-right: 16rpx;
  316. }
  317. .text_big {
  318. font-size: 32rpx;
  319. font-weight: 700;
  320. margin-top: 10rpx;
  321. .underline{
  322. text-decoration: underline;
  323. }
  324. }
  325. .page_item_cont_T {
  326. padding-top: 28rpx;
  327. padding-bottom: 28rpx;
  328. font-size: 28rpx;
  329. .page_item_cont_title {
  330. height: 100%;
  331. font-size: 32rpx;
  332. display: flex;
  333. justify-content: space-between;
  334. align-items: center;
  335. }
  336. .page_item_cont_title2{
  337. margin-top: 36rpx;
  338. margin-bottom: 18rpx;
  339. height: 100%;
  340. font-size: 32rpx;
  341. font-weight: bold;
  342. display: flex;
  343. align-items: center;
  344. }
  345. }
  346. .page_item_cont_B {
  347. padding-top: 28rpx;
  348. margin-bottom: 28rpx;
  349. .page_item_cont_title {
  350. font-size: 32rpx;
  351. display: flex;
  352. justify-content: space-between;
  353. }
  354. .page_item_cont_title1 {
  355. height: 60rpx;
  356. line-height: 60rpx;
  357. font-size: 32rpx;
  358. padding-left: 64rpx;
  359. }
  360. }
  361. }
  362. .foot_btn {
  363. line-height: 88rpx;
  364. height: 100rpx;
  365. margin-top: 40rpx;
  366. display: flex;
  367. justify-content: center;
  368. .btn1,
  369. .btn2,
  370. .btn3 {
  371. height: 88rpx;
  372. flex: 1;
  373. margin: 0 1%;
  374. background-image: linear-gradient(to right, #72c172, #3bb197);
  375. color: #fff;
  376. border-radius: 8rpx;
  377. font-size: 32rpx;
  378. margin-top: 16rpx;
  379. text-align: center;
  380. }
  381. }
  382. .foot_btn_spe {
  383. line-height: 88rpx;
  384. height: 100rpx;
  385. margin-top: 40rpx;
  386. text-align: center;
  387. display: flex;
  388. justify-content: space-between;
  389. flex-wrap: wrap;
  390. &::after {
  391. content: '';
  392. flex: 1;
  393. }
  394. view {
  395. height: 88rpx;
  396. width: 48%;
  397. margin: 0 1%;
  398. background-image: linear-gradient(to right, #72c172, #3bb197);
  399. color: #fff;
  400. border-radius: 8rpx;
  401. font-size: 32rpx;
  402. margin-top: 16rpx;
  403. }
  404. }
  405. }
  406. </style>