checkAfterScanning.vue 12 KB

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