checkAfterScanning.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  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.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. this.models2 = {
  170. disjunctor: true,
  171. title: "提示",
  172. content,
  173. icon: "warn",
  174. operate: {
  175. ok: "确定",
  176. cancel: "取消",
  177. },
  178. };
  179. } else {
  180. uni.showToast({
  181. icon: "none",
  182. title: "请求失败!",
  183. });
  184. }
  185. })
  186. },
  187. // 取消
  188. cancel() {
  189. this.models.disjunctor = false;
  190. },
  191. // 确定
  192. ok2() {
  193. this.models2.disjunctor = false;
  194. let postData = {
  195. ids: [this.queryObj.id],
  196. deptQrCode: this.queryObj.deptCode
  197. };
  198. uni.showLoading({
  199. title: '加载中',
  200. mask: true
  201. });
  202. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  203. uni.hideLoading();
  204. if (ress.status == 200) {
  205. if (this.wcFlag) {
  206. this.overFinish()
  207. } else {
  208. this.gotoOver();
  209. }
  210. } else {
  211. uni.showToast({
  212. icon: "none",
  213. title: "请求失败!",
  214. });
  215. }
  216. })
  217. },
  218. // 取消
  219. cancel2() {
  220. this.models2.disjunctor = false;
  221. },
  222. know2() {
  223. this.models2.disjunctor = false;
  224. uni.navigateTo({
  225. url: "../receiptpage/receiptpage",
  226. });
  227. },
  228. // 正常完成扫描
  229. overFinish() {
  230. let data = {
  231. type: this.queryObj.type1,
  232. ids: [this.queryObj.id],
  233. };
  234. //只要是标本轮巡1对多或者多对多
  235. // plan-spe-dsd-2 1对多
  236. // plan-spe-dsd-3 多对多
  237. if (
  238. this.queryObj.type1 === "plan-spe-ddd-2" ||
  239. this.queryObj.type1 === "plan-spe-dsd-2" ||
  240. this.queryObj.type1 === "plan-spe-dsd-3"
  241. ) {
  242. post("/workerOrder/finishPlanSpes", data).then((res) => {
  243. // uni.hideLoading()
  244. if (res.status == 200) {
  245. this.models2 = {
  246. disjunctor: true,
  247. title: "提示",
  248. content: `完成扫描成功`,
  249. icon: "success",
  250. operate: {
  251. know: "知道了",
  252. },
  253. };
  254. } else {
  255. uni.showToast({
  256. icon: "none",
  257. title: "请求失败!",
  258. });
  259. }
  260. });
  261. } else {
  262. post("/workerOrder/finishSpes", data).then((res) => {
  263. // uni.hideLoading()
  264. if (res.status == 200) {
  265. uni.navigateTo({
  266. url: "../receiptpage/receiptpage",
  267. });
  268. } else {
  269. uni.showToast({
  270. icon: "none",
  271. title: "请求失败!",
  272. });
  273. }
  274. });
  275. }
  276. },
  277. // 跳转到已扫描标本详情页
  278. goToSpeDetail(deptName='', qrCode=''){
  279. uni.navigateTo({
  280. url: `../noScanSpecimen/noScanSpecimen?deptName=${deptName}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${qrCode}&isScan=1&specimensCheck=1`,
  281. });
  282. }
  283. },
  284. onLoad(options) {
  285. console.log(options);
  286. this.queryObj = options;
  287. this.getInfo(this.queryObj.id);
  288. // #ifdef APP-PLUS
  289. webHandle("no", "app");
  290. // #endif
  291. // #ifdef H5
  292. webHandle("no", "wx");
  293. // #endif
  294. },
  295. };
  296. </script>
  297. <style lang="less" scoped>
  298. .checkAfterScanning {
  299. .checkAfterScanning_title {
  300. padding: 50rpx 0;
  301. font-size: 46rpx;
  302. font-weight: 550;
  303. text-align: center;
  304. border-bottom: 1px solid #ccc;
  305. }
  306. .page_item_cont {
  307. min-height: 90rpx;
  308. padding: 0 20rpx;
  309. text-align: left;
  310. position: relative;
  311. .text_big {
  312. font-size: 32rpx;
  313. font-weight: 700;
  314. margin-top: 10rpx;
  315. .underline{
  316. text-decoration: underline;
  317. }
  318. }
  319. .page_item_cont_T {
  320. padding-top: 28rpx;
  321. padding-bottom: 28rpx;
  322. font-size: 28rpx;
  323. .page_item_cont_title {
  324. height: 100%;
  325. font-size: 32rpx;
  326. display: flex;
  327. justify-content: space-between;
  328. align-items: center;
  329. }
  330. .page_item_cont_title2{
  331. margin-top: 36rpx;
  332. margin-bottom: 18rpx;
  333. height: 100%;
  334. font-size: 32rpx;
  335. font-weight: bold;
  336. display: flex;
  337. align-items: center;
  338. }
  339. }
  340. .page_item_cont_B {
  341. padding-top: 28rpx;
  342. margin-bottom: 28rpx;
  343. .page_item_cont_title {
  344. font-size: 32rpx;
  345. display: flex;
  346. justify-content: space-between;
  347. }
  348. .page_item_cont_title1 {
  349. height: 60rpx;
  350. line-height: 60rpx;
  351. font-size: 32rpx;
  352. padding-left: 64rpx;
  353. }
  354. }
  355. }
  356. .foot_btn {
  357. line-height: 88rpx;
  358. height: 100rpx;
  359. margin-top: 40rpx;
  360. display: flex;
  361. justify-content: center;
  362. .btn1,
  363. .btn2,
  364. .btn3 {
  365. height: 88rpx;
  366. flex: 1;
  367. margin: 0 1%;
  368. background-image: linear-gradient(to right, #72c172, #3bb197);
  369. color: #fff;
  370. border-radius: 8rpx;
  371. font-size: 32rpx;
  372. margin-top: 16rpx;
  373. text-align: center;
  374. }
  375. }
  376. .foot_btn_spe {
  377. line-height: 88rpx;
  378. height: 100rpx;
  379. margin-top: 40rpx;
  380. text-align: center;
  381. display: flex;
  382. justify-content: space-between;
  383. flex-wrap: wrap;
  384. &::after {
  385. content: '';
  386. flex: 1;
  387. }
  388. view {
  389. height: 88rpx;
  390. width: 48%;
  391. margin: 0 1%;
  392. background-image: linear-gradient(to right, #72c172, #3bb197);
  393. color: #fff;
  394. border-radius: 8rpx;
  395. font-size: 32rpx;
  396. margin-top: 16rpx;
  397. }
  398. }
  399. }
  400. </style>