scanning_djEnd.vue 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399
  1. <template>
  2. <view class="Scanning_djEnd">
  3. <view class="Scanning_top" v-if="infoDATA.status == 200">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok newicon newicon-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1">操作成功</view>
  9. </view>
  10. </view>
  11. <view class="Scanning_top" v-if="
  12. infoDATA.status == 10005 ||
  13. infoDATA.status == 100018 ||
  14. infoDATA.status == 10004 ||
  15. infoDATA.status == 100021 ||
  16. infoDATA.status == 500 ||
  17. infoDATA.status == 100031
  18. ">
  19. <view class="Scanning_top_icon">
  20. <text class="cubeic-close newicon newicon-shibai"></text>
  21. </view>
  22. <view class="Scanning_top_text">
  23. <view class="text1">操作失败</view>
  24. <view class="text1 f30" v-if="queryObj.qrcode !== undefined">扫描内容:{{queryObj.qrcode}}</view>
  25. </view>
  26. </view>
  27. <view class="Scanning_cont" v-if="
  28. (infoDATA.status == 200 && type == 'specimenPlan') ||
  29. (infoDATA.status == 200 && type == 'specimen')
  30. "></view>
  31. <view class="Scanning_cont" v-if="
  32. (infoDATA.status == 200 && type == 'patientTransport') ||
  33. (infoDATA.status == 200 && type == 'inspect')
  34. ">扫描患者腕带并将患者送往目标科室.</view>
  35. <view class="Scanning_cont" v-if="
  36. (infoDATA.status == 200 &&
  37. type == 'drugsBag' &&
  38. (type1 == 'drug-ddd-2' || type1 == 'drug-dsd-2')) ||
  39. (infoDATA.status == 200 &&
  40. type == 'jPBag' &&
  41. (type1 == 'jp-ddd-2' || type1 == 'jp-dsd-2'))
  42. ">已到达目标科室,请扫描药包或静配包.</view>
  43. <view class="Scanning_cont" v-if="
  44. (infoDATA.status == 200 &&
  45. type == 'drugsBag' &&
  46. (type1 == 'drug-ddd-1' || type1 == 'drug-dsd-1')) ||
  47. (infoDATA.status == 200 &&
  48. type == 'jPBag' &&
  49. (type1 == 'jp-ddd-1' || type1 == 'jp-dsd-1'))
  50. ">
  51. <view v-if="accountObj"> 交接人工号 : {{ accountObj.account }} </view>
  52. <view v-if="accountObj"> 交接人姓名 : {{ accountObj.accountName }} </view>
  53. <view>已到达目标科室,请取药包或静配包后送达目标科室.</view>
  54. </view>
  55. <view class="Scanning_cont" v-if="
  56. infoDATA.status == 200 && type == 'other' && infoDATA.type == 'qt-ddd-1'
  57. ">已到达目标科室,请执行该工单.</view>
  58. <view class="Scanning_cont" v-if="
  59. (infoDATA.state == 'finish' &&
  60. infoDATA.status == 200 &&
  61. type == 'specimenPlan' &&
  62. infoDATA.type == 'plan-spe-dsd-1') ||
  63. (infoDATA.status == 200 &&
  64. type == 'other' &&
  65. infoDATA.type == 'qt-dsd-1')
  66. ">已到达目标科室,工单已完成.</view>
  67. <view class="Scanning_cont" v-if="
  68. (infoDATA.status == 200 &&
  69. type == 'specimenPlan' &&
  70. infoDATA.type != 'plan-spe-ddd-1' &&
  71. infoDATA.type != 'plan-spe-dsd-1') ||
  72. (infoDATA.status == 200 &&
  73. type == 'specimen' &&
  74. infoDATA.type != 'spe-ddd-1' &&
  75. infoDATA.type != 'spe-dsd-1')
  76. ">已到达目标科室,请扫描标本.</view>
  77. <view class="Scanning_cont" v-if="
  78. (infoDATA.status == 200 &&
  79. type == 'specimenPlan' &&
  80. infoDATA.type == 'plan-spe-ddd-1') ||
  81. (infoDATA.status == 200 &&
  82. type == 'specimen' &&
  83. infoDATA.type == 'spe-ddd-1')
  84. ">
  85. <view v-if="accountObj"> 交接人工号 : {{ accountObj.account }} </view>
  86. <view v-if="accountObj"> 交接人姓名 : {{ accountObj.accountName }} </view>
  87. <view>已到达目标科室,请取标本后送达目标科室.</view>
  88. </view>
  89. <view class="Scanning_cont" v-if="
  90. (infoDATA.state != 'finish' &&
  91. infoDATA.status == 200 &&
  92. type == 'specimenPlan' &&
  93. infoDATA.type == 'plan-spe-dsd-1') ||
  94. (infoDATA.status == 200 &&
  95. type == 'specimen' &&
  96. infoDATA.type == 'spe-dsd-1')
  97. ">
  98. <view v-if="accountObj"> 交接人工号 : {{ accountObj.account }} </view>
  99. <view v-if="accountObj"> 交接人姓名 : {{ accountObj.accountName }} </view>
  100. <view>已到达目标科室,请放置标本完成该工单.</view>
  101. </view>
  102. <view class="Scanning_cont" v-if="infoDATA.status != 200">
  103. <view>{{ infoDATA.msg }}</view>
  104. </view>
  105. <view class="foot_btn" v-if="type == 'inspect' || type == 'patientTransport'">
  106. <view class="btn3" @click="Scanning_again()">继续扫描</view>
  107. </view>
  108. <view class="foot_btn" v-if="type == 'drugsBag' || type == 'jPBag'">
  109. <view class="btn3" @click="Scanning_again()" v-if="
  110. type1 === 'drug-ddd-2' ||
  111. type1 === 'drug-dsd-2' ||
  112. type1 === 'jp-ddd-2' ||
  113. type1 === 'jp-dsd-2'
  114. ">继续扫描</view>
  115. <view class="btn3" @click="showHandViewDrugsbag()" v-if="
  116. type1 === 'drug-ddd-2' ||
  117. type1 === 'drug-dsd-2' ||
  118. type1 === 'jp-ddd-2' ||
  119. type1 === 'jp-dsd-2'
  120. ">手动录入</view>
  121. <view class="btn3" @click="showAlert()" v-if="
  122. type1 === 'drug-ddd-1' ||
  123. type1 === 'drug-dsd-1' ||
  124. type1 === 'jp-ddd-1' ||
  125. type1 === 'jp-dsd-1'
  126. ">知道了</view>
  127. </view>
  128. <view class="foot_btn_spe" v-if="
  129. (type == 'specimenPlan' &&
  130. type1 != 'plan-spe-dsd-1' &&
  131. (type1 != 'plan-spe-ddd-1') & (type1 != 'plan-spe-ddd-2')) ||
  132. (type == 'specimen' &&
  133. type1 != 'spe-dsd-1' &&
  134. type1 != 'spe-dsd-4' &&
  135. (type1 != 'spe-ddd-1') & (type1 != 'spe-ddd-2'))
  136. ">
  137. <view class="btn1" @click="Scanning_again()">扫描标本</view>
  138. <view class="btn3" @click="showHandViewSpecimen()">手动录入</view>
  139. <view class="btn3" @click="getNoScanSpecimen(false)">未扫描标本</view>
  140. <view class="btn3" @click="getNoScanSpecimen(true)">已扫描标本</view>
  141. <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
  142. <view class="btn2" @click="checkNumber()" v-if="queryObj.isDigitalHandover==1">数量核对</view>
  143. </view>
  144. <view class="foot_btn_spe" v-if="
  145. (type == 'specimenPlan' && type1 == 'plan-spe-ddd-2') ||
  146. (type == 'specimen' && type1 == 'spe-ddd-2')
  147. ">
  148. <view class="btn1" @click="Scanning_again()">扫描标本</view>
  149. <view class="btn3" @click="showHandViewSpecimen()">手动录入</view>
  150. <view class="btn3" @click="getNoScanSpecimen(false)">未扫描标本</view>
  151. <view class="btn3" @click="getNoScanSpecimen(true)">已扫描标本</view>
  152. <view class="btn2" @click="Scanning_complete(ids)">完成扫描</view>
  153. <view class="btn2" @click="checkNumber()" v-if="queryObj.isDigitalHandover==1">数量核对</view>
  154. </view>
  155. <view class="foot_btn" v-if="
  156. (infoDATA.state != 'finish' &&
  157. type == 'specimenPlan' &&
  158. type1 == 'plan-spe-dsd-1') ||
  159. (type == 'specimen' && type1 == 'spe-dsd-1')
  160. ">
  161. <view class="btn1" @click="Scanning_complete1(ids)">完成工单</view>
  162. <view class="btn2" @click="showAlert()">继续配送</view>
  163. </view>
  164. <view class="foot_btn" v-if="
  165. infoDATA.status != 200 &&
  166. type != 'specimenPlan' &&
  167. type != 'specimen' &&
  168. type !== 'jPBag' &&
  169. type !== 'inspect' &&
  170. type !== 'drugsBag' &&
  171. type !== 'patientTransport'
  172. ">
  173. <view class="btn3" @click="showAlert()">知道了</view>
  174. </view>
  175. <view class="foot_btn" v-if="
  176. (infoDATA.status == 200 && type1 == 'spe-ddd-1') ||
  177. (infoDATA.status == 200 && type1 == 'plan-spe-ddd-1')
  178. ">
  179. <view class="btn3" @click="showAlert()">知道了</view>
  180. </view>
  181. <view class="foot_btn" v-if="
  182. (infoDATA.state == 'finish' &&
  183. infoDATA.status == 200 &&
  184. type == 'specimenPlan' &&
  185. type1 == 'plan-spe-dsd-1') ||
  186. (infoDATA.status == 200 && type == 'other')
  187. ">
  188. <view class="btn3" @click="showAlert()">知道了</view>
  189. </view>
  190. <view class="foot_btn" v-if="infoDATA.status != 200 && type1 == 'spe-dsd-4'">
  191. <view class="btn3" @click="showAlert()">知道了</view>
  192. </view>
  193. <!-- 弹窗 -->
  194. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  195. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  196. <!-- 弹窗 -->
  197. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  198. @ok="ok2" @know="know2" @cancel="cancel2" :operate="models2.operate">
  199. </showModel>
  200. <!-- 手动查询标本弹窗 -->
  201. <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  202. @ok="speOk" @cancel="speCancel">
  203. </handViewSpecimen>
  204. <!-- 手动查询药品弹窗 -->
  205. <handViewDrugsBag v-if="drugbagModels.disjunctor" :title="drugbagModels.title"
  206. :disjunctor="drugbagModels.disjunctor" @ok="drugbagOk" @cancel="drugbagCancel">
  207. </handViewDrugsBag>
  208. <!-- 修改标本数量弹窗 -->
  209. <changeSpeNum v-if="changeSpeModels.disjunctor" :operate="{ok:'确认数量',check:'详细核对',cancel:'取消'}"
  210. :title="changeSpeModels.title" :content="changeSpeModels.content" :disjunctor="changeSpeModels.disjunctor"
  211. @ok="changeSpeOk" @check="changeSpeCheck" @cancel="changeSpeCancel" :num="speNumChange" :modifyReason="modifyReason" :isFirstShowReason="false">
  212. </changeSpeNum>
  213. <!-- 调查问卷二维码 -->
  214. <questionCode v-if="isQuestionModel" :orderId="questionId" @know="isQuestionModel = false"></questionCode>
  215. <!-- PDA扫描 -->
  216. <scanner></scanner>
  217. </view>
  218. </template>
  219. <script>
  220. import showModel from "../../components/showModel/showModel.vue";
  221. import scanner from "../../components/scanner/scanner.vue";
  222. import questionCode from "../../components/questionCode/questionCode.vue";
  223. import {
  224. get,
  225. post,
  226. SM,
  227. webHandle
  228. } from "../../http/http.js";
  229. export default {
  230. components:{
  231. questionCode,
  232. scanner
  233. },
  234. data() {
  235. return {
  236. // 终点科室标红
  237. isEndDeptRed: false,
  238. // 调研二维码
  239. isQuestionModel:false,
  240. questionId:null,
  241. speNumChange: 0,
  242. modifyReason:'',
  243. changeSpeObj: {},
  244. // 修改标本数量弹窗model
  245. changeSpeModels: {
  246. disjunctor: false,
  247. },
  248. currentCode: '', //当前小扫描的科室二维码
  249. // 手动查询标本弹窗model
  250. speModels: {
  251. disjunctor: false,
  252. },
  253. // 手动查询药品弹窗model
  254. drugbagModels: {
  255. disjunctor: false,
  256. },
  257. // 交接人信息
  258. accountObj: undefined,
  259. //传给后端查询是否继续扫描
  260. deptId: undefined,
  261. SMFlag: true,
  262. // 弹窗model
  263. models: {
  264. disjunctor: false,
  265. },
  266. // 完成扫描弹窗model1
  267. models2: {
  268. disjunctor: false,
  269. },
  270. wcId: "", //工单完成ID
  271. wcFlag: false,
  272. modelFlag: "", //工单完成类型
  273. infoDATA: [],
  274. ids: [],
  275. type: "",
  276. type1: "",
  277. queryObj: {}, //路由传递过来的参数
  278. gotoFlag: true,
  279. speNum: 0,
  280. content: "",
  281. };
  282. },
  283. methods: {
  284. // 修改标本数量-核对
  285. changeSpeCheck() {
  286. console.log(this.infoDATA);
  287. this.changeSpeModels.disjunctor = false;
  288. uni.navigateTo({
  289. url: `/pages/specimenCheckingDetail/specimenCheckingDetail?infoDATA=${encodeURIComponent(JSON.stringify({startDept:this.queryObj.startDeptId,uuid:this.queryObj.gdId}))}&id=${this.queryObj.signDeptId}&t=big&gdState=${this.queryObj.gdState}`
  290. })
  291. },
  292. // 修改标本数量-确认
  293. changeSpeOk(data) {
  294. console.log(data);
  295. const pathUrl = uni.getStorageSync("path");
  296. const {
  297. speNum,
  298. reason,
  299. imageValue
  300. } = data;
  301. this.changeSpeModels.disjunctor = false;
  302. uni.showLoading({
  303. mask: true,
  304. title: "加载中",
  305. });
  306. let postData = {
  307. checkDept: this.queryObj.endDepts, //终点科室
  308. transDeptId: this.changeSpeObj.infoDATA.startDept,
  309. gdId: this.changeSpeObj.infoDATA.uuid,
  310. deptId: this.changeSpeObj.id == "undefined" ?
  311. this.changeSpeObj.infoDATA.startDept : this.changeSpeObj.id,
  312. specimensNum: speNum,
  313. modifyReason: reason,
  314. };
  315. post("/api/updateCheckDeptSpecimensNum", postData).then((res) => {
  316. if (res.status == 200) {
  317. console.log(imageValue);
  318. if (!imageValue.length) {
  319. uni.hideLoading();
  320. if (this.changeSpeObj.t == "big") {
  321. if (this.changeSpeObj.gdState == 4) {
  322. // 待到达
  323. uni.navigateTo({
  324. url: `../../pages/receiptpage/receiptpage`,
  325. });
  326. } else if (this.changeSpeObj.gdState == 5) {
  327. // 待送达
  328. if (res.type1 === "plan-spe-ddd-2") {} else {
  329. let content = `本工单已签到<strong class="red">${
  330. res.scanSet ? res.scanSet.join("、") : ""
  331. }</strong>,剩余需签到科室<strong class="red">${
  332. res.notScanSet ? res.notScanSet.join("、") : ""
  333. }</strong>,您确定完成工单吗?`;
  334. uni.navigateTo({
  335. url: `../scanning/scanning?type=${res.type}&type1=${
  336. res.type1
  337. }&id=${encodeURIComponent(
  338. JSON.stringify([res.gdid])
  339. )}&content=${content}`,
  340. });
  341. }
  342. }
  343. } else if (this.changeSpeObj.t == "small") {
  344. if (this.changeSpeObj.id == "undefined") {
  345. //快捷建单建单进入
  346. uni.navigateTo({
  347. url: `../../pages/receiptpage/receiptpage`,
  348. });
  349. } else {
  350. if (this.changeSpeObj.gdState == 4) {
  351. // 待到达
  352. uni.navigateTo({
  353. url: `../../pages/receiptpage/receiptpage`,
  354. });
  355. } else if (this.changeSpeObj.gdState == 5) {
  356. // 待送达
  357. if (res.type1 === "plan-spe-ddd-2") {} else {
  358. let content = `本工单已签到<strong class="red">${
  359. res.scanSet ? res.scanSet.join("、") : ""
  360. }</strong>,剩余需签到科室<strong class="red">${
  361. res.notScanSet ? res.notScanSet.join("、") : ""
  362. }</strong>,您确定完成工单吗?`;
  363. uni.navigateTo({
  364. url: `../scanning/scanning?type=${res.type}&type1=${
  365. res.type1
  366. }&id=${encodeURIComponent(
  367. JSON.stringify([res.gdid])
  368. )}&content=${content}`,
  369. });
  370. }
  371. }
  372. }
  373. } else {
  374. uni.navigateTo({
  375. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  376. JSON.stringify(this.changeSpeObj.infoDATA)
  377. )}`,
  378. });
  379. }
  380. return;
  381. }
  382. let n = 0;
  383. imageValue.forEach((v) => {
  384. // 图片上传 start
  385. console.log("压缩前");
  386. let canvasWidth = v.image.width; //图片原始长宽
  387. let canvasHeight = v.image.height;
  388. let img = new Image();
  389. img.src = v.path;
  390. let canvas = document.createElement("canvas");
  391. let ctx = canvas.getContext("2d");
  392. canvas.width = canvasWidth;
  393. canvas.height = canvasHeight;
  394. ctx.drawImage(img, 0, 0, canvasWidth, canvasHeight);
  395. canvas.toBlob(
  396. (fileSrc) => {
  397. let tp = window.URL.createObjectURL(fileSrc);
  398. console.log("压缩后");
  399. n++;
  400. uni.uploadFile({
  401. url: pathUrl +
  402. "/common/common/uploadAttachment/specimenPhotos/" +
  403. res.deptSpecimensNumId +
  404. "/666",
  405. filePath: tp,
  406. name: "file",
  407. formData: {
  408. filename: v.name,
  409. },
  410. success: (uploadFileRes) => {
  411. console.log(uploadFileRes);
  412. if (--n === 0) {
  413. uni.hideLoading();
  414. uni.showModal({
  415. title: "提示",
  416. content: "修改成功!",
  417. showCancel: false,
  418. success: (result) => {
  419. if (result.confirm) {
  420. console.log("用户点击确定", this.changeSpeObj.t);
  421. if (this.changeSpeObj.t == "big") {
  422. if (this.changeSpeObj.gdState == 4) {
  423. // 待到达
  424. uni.navigateTo({
  425. url: `../../pages/receiptpage/receiptpage`,
  426. });
  427. } else if (this.changeSpeObj.gdState == 5) {
  428. // 待送达
  429. if (res.type1 === "plan-spe-ddd-2") {} else {
  430. let content = `本工单已签到<strong class="red">${
  431. res.scanSet ? res.scanSet.join("、") : ""
  432. }</strong>,剩余需签到科室<strong class="red">${
  433. res.notScanSet ? res.notScanSet.join("、") : ""
  434. }</strong>,您确定完成工单吗?`;
  435. uni.navigateTo({
  436. url: `../scanning/scanning?type=${res.type}&type1=${
  437. res.type1
  438. }&id=${encodeURIComponent(
  439. JSON.stringify([res.gdid])
  440. )}&content=${content}`,
  441. });
  442. }
  443. }
  444. } else if (this.changeSpeObj.t == "small") {
  445. if (this.changeSpeObj.id == "undefined") {
  446. //快捷建单建单进入
  447. uni.navigateTo({
  448. url: `../../pages/receiptpage/receiptpage`,
  449. });
  450. } else {
  451. if (this.changeSpeObj.gdState == 4) {
  452. // 待到达
  453. uni.navigateTo({
  454. url: `../../pages/receiptpage/receiptpage`,
  455. });
  456. } else if (this.changeSpeObj.gdState == 5) {
  457. // 待送达
  458. if (res.type1 === "plan-spe-ddd-2") {} else {
  459. let content = `本工单已签到<strong class="red">${
  460. res.scanSet ? res.scanSet.join("、") : ""
  461. }</strong>,剩余需签到科室<strong class="red">${
  462. res.notScanSet ? res.notScanSet.join("、") : ""
  463. }</strong>,您确定完成工单吗?`;
  464. uni.navigateTo({
  465. url: `../scanning/scanning?type=${res.type}&type1=${
  466. res.type1
  467. }&id=${encodeURIComponent(
  468. JSON.stringify([res.gdid])
  469. )}&content=${content}`,
  470. });
  471. }
  472. }
  473. }
  474. } else {
  475. uni.navigateTo({
  476. url: `../../pages/specimenChecking/specimenChecking?infoDATA=${encodeURIComponent(
  477. JSON.stringify(this.changeSpeObj.infoDATA)
  478. )}`,
  479. });
  480. }
  481. } else if (result.cancel) {
  482. console.log("用户点击取消");
  483. }
  484. },
  485. });
  486. }
  487. },
  488. fail: (err) => {
  489. n--;
  490. console.error(err);
  491. uni.hideLoading();
  492. uni.showToast({
  493. icon: "none",
  494. title: "上传失败",
  495. duration: 2000,
  496. });
  497. },
  498. });
  499. },
  500. "image/jpeg",
  501. 0.3
  502. );
  503. // 图片上传 end
  504. });
  505. } else {
  506. uni.hideLoading();
  507. uni.showToast({
  508. icon: "none",
  509. title: res.msg || "接口获取数据失败!",
  510. });
  511. }
  512. });
  513. },
  514. // 修改标本数量-取消
  515. changeSpeCancel() {
  516. this.changeSpeModels.disjunctor = false;
  517. },
  518. // 修改标本数量弹窗
  519. showChangeSpe() {
  520. uni.showLoading({
  521. mask: true,
  522. title: "加载中",
  523. });
  524. let postData = {
  525. deptId: this.deptId,
  526. gdId: this.queryObj.gdId,
  527. };
  528. post(`/api/getStartDeptSpecimensNum`, postData).then((res) => {
  529. uni.hideLoading();
  530. if (res.status == 200) {
  531. this.speNumChange = res.data[0].deptSpecimensNum;
  532. this.modifyReason = res.data[0].modifyReason;
  533. this.changeSpeModels = {
  534. title: "修改标本数量",
  535. content: `您已到达<span class="red">${this.queryObj.dept}</span>本科室标本数量为<span class="red">${this.speNumChange}</span>,请确认标本数量`,
  536. disjunctor: true,
  537. };
  538. } else {
  539. this.speNumChange = "";
  540. this.modifyReason = "";
  541. uni.showToast({
  542. icon: "none",
  543. title: res.msg || "接口获取数据失败!",
  544. });
  545. }
  546. });
  547. },
  548. // 数量核对 queryObj
  549. checkNumber() {
  550. this.changeSpeObj = {
  551. infoDATA: {
  552. startDept: this.queryObj.startDeptId,
  553. uuid: this.queryObj.gdId
  554. },
  555. id: this.queryObj.signDeptId,
  556. t: 'big',
  557. gdState: this.queryObj.gdState,
  558. }
  559. this.showChangeSpe();
  560. },
  561. // 手动查询药品-确认
  562. drugbagOk(data) {
  563. console.log(data);
  564. if (!data.id) {
  565. //没有查询到药品
  566. uni.showModal({
  567. title: '提示',
  568. content: "没有查询到发药单号!",
  569. showCancel: false,
  570. success: function(res) {
  571. if (res.confirm) {
  572. console.log('用户点击确定');
  573. } else if (res.cancel) {
  574. console.log('用户点击取消');
  575. }
  576. }
  577. });
  578. return;
  579. }
  580. this.drugbagModels.disjunctor = false;
  581. this.hand_scanning_common(data.packid, 'hand');
  582. },
  583. // 手动查询药品-取消
  584. drugbagCancel() {
  585. this.drugbagModels.disjunctor = false;
  586. },
  587. // 手动查询药品弹窗
  588. showHandViewDrugsbag() {
  589. this.drugbagModels = {
  590. title: '填写发药单号',
  591. disjunctor: true,
  592. }
  593. },
  594. // 手动查询标本-确认
  595. speOk(data) {
  596. console.log(data);
  597. if (!data.id) {
  598. //没有查询到标本
  599. uni.showModal({
  600. title: '提示',
  601. content: "没有查询到标本!",
  602. showCancel: false,
  603. success: function(res) {
  604. if (res.confirm) {
  605. console.log('用户点击确定');
  606. } else if (res.cancel) {
  607. console.log('用户点击取消');
  608. }
  609. }
  610. });
  611. return;
  612. }
  613. this.speModels.disjunctor = false;
  614. this.hand_scanning_common(data.scode, 'hand');
  615. },
  616. // 手动查询标本-取消
  617. speCancel() {
  618. this.speModels.disjunctor = false;
  619. },
  620. // 手动查询标本弹窗
  621. showHandViewSpecimen() {
  622. this.speModels = {
  623. title: '填写标本编码',
  624. disjunctor: true,
  625. }
  626. },
  627. // 手动输入标本和扫码公共方法
  628. hand_scanning_common(ress1, type) {
  629. uni.showLoading({
  630. title: "加载中",
  631. mask: true,
  632. });
  633. // ----------------
  634. //检验二维码的有效性
  635. post("/dept/scanning", {
  636. content: ress1,
  637. }).then((result) => {
  638. this.SMFlag = true;
  639. if (result.state == 200 || result.state == 201) {
  640. this.currentCode = result.code;
  641. let ress = result.code;
  642. let speCode = ress;
  643. let data = {
  644. code: speCode,
  645. type: this.queryObj.type1,
  646. deptCode: this.code,
  647. ids: this.ids,
  648. };
  649. let postType = "";
  650. if (this.type == "jPBag" || this.type == "drugsBag") {
  651. postType = "handleDrugsAndJp";
  652. if(this.type == "drugsBag"){
  653. delete data.ids;
  654. }
  655. if (this.accountObj) {
  656. data.handover = this.accountObj.accountId;
  657. }
  658. data.deptId = this.deptId;
  659. }
  660. if (this.type == "specimen") {
  661. postType = "handleSpes";
  662. data["speCode"] = data.code;
  663. delete data.code;
  664. if (this.accountObj) {
  665. data.handover = this.accountObj.accountId;
  666. }
  667. }
  668. if (this.type == "specimenPlan") {
  669. postType = "handlePlanSpes";
  670. data["speCode"] = data.code;
  671. delete data.code;
  672. if (this.accountObj) {
  673. data.handover = this.accountObj.accountId;
  674. }
  675. }
  676. if (this.type == "inspect") {
  677. postType = "handleIns";
  678. }
  679. if (this.type == "patientTransport") {
  680. postType = "handleTrans";
  681. }
  682. post("/workerOrder/" + postType, data).then((ress) => {
  683. uni.hideLoading();
  684. if (ress.status == 200 || ress.status == 11111) {
  685. //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  686. if ((this.type == "specimenPlan" || this.type == "specimen") && ress.status != 11111) {
  687. this.getPageConfigSpecimen((flag, type, ress) => {
  688. if(flag){
  689. if (type === 'scan') {
  690. setTimeout(()=>{
  691. // #ifdef H5
  692. this.Scanning_again();
  693. // #endif
  694. },500)
  695. }
  696. }
  697. if(ress){
  698. this.speNum = ress.specimenCount;
  699. uni.navigateTo({
  700. url: `../scanning_djInfo/scanning_djInfo?type=${
  701. this.queryObj.type
  702. }&type1=${
  703. this.queryObj.type1
  704. }&infoData=${encodeURIComponent(
  705. JSON.stringify(ress.data)
  706. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  707. this.queryObj.code
  708. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  709. JSON.stringify(this.ids)
  710. )}&model=${encodeURIComponent(
  711. JSON.stringify(ress)
  712. )}&speNum=${this.speNum}&accountObj=${encodeURIComponent(
  713. JSON.stringify(this.accountObj)
  714. )}&deptId=${this.deptId}&scanOrHand=${type}&isEndDeptRed=${this.isEndDeptRed}`,
  715. });
  716. }
  717. }, type, ress.data, ress);
  718. return;
  719. }
  720. if(this.type === 'patientTransport' && this.queryObj.type1 == 'trans-dsd-1'){
  721. // 门诊服务点
  722. if(ress.orderList){
  723. uni.navigateTo({
  724. url: `/pages/outpatient/outpatientEndSignIn/outpatientEndSignIn?model=${encodeURIComponent(JSON.stringify(ress))}`,
  725. });
  726. }else{
  727. this.speNum = ress.specimenCount;
  728. uni.navigateTo({
  729. url: `../scanning_djInfo/scanning_djInfo?type=${
  730. this.queryObj.type
  731. }&type1=${
  732. this.queryObj.type1
  733. }&infoData=${encodeURIComponent(
  734. JSON.stringify(ress.data)
  735. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  736. this.queryObj.code
  737. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  738. JSON.stringify(this.ids)
  739. )}&model=${encodeURIComponent(
  740. JSON.stringify(ress)
  741. )}&speNum=${this.speNum}&accountObj=${encodeURIComponent(
  742. JSON.stringify(this.accountObj)
  743. )}&deptId=${this.deptId}&scanOrHand=${type}`,
  744. });
  745. }
  746. }else{
  747. this.speNum = ress.specimenCount;
  748. uni.navigateTo({
  749. url: `../scanning_djInfo/scanning_djInfo?type=${
  750. this.queryObj.type
  751. }&type1=${
  752. this.queryObj.type1
  753. }&infoData=${encodeURIComponent(
  754. JSON.stringify(ress.data)
  755. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  756. this.queryObj.code
  757. }&dept=${this.queryObj.dept}&ids=${encodeURIComponent(
  758. JSON.stringify(this.ids)
  759. )}&model=${encodeURIComponent(
  760. JSON.stringify(ress)
  761. )}&speNum=${this.speNum}&accountObj=${encodeURIComponent(
  762. JSON.stringify(this.accountObj)
  763. )}&deptId=${this.deptId}&scanOrHand=${type}`,
  764. });
  765. }
  766. } else {
  767. uni.navigateTo({
  768. url: `../scanning_djInfo/scanning_djInfo?type=${
  769. this.queryObj.type
  770. }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
  771. ress.msg
  772. }&deptCode=${this.queryObj.code}&dept=${
  773. this.queryObj.dept
  774. }&ids=${encodeURIComponent(
  775. JSON.stringify(this.ids)
  776. )}&infoData=${encodeURIComponent(
  777. JSON.stringify(ress.data)
  778. )}&model=${encodeURIComponent(
  779. JSON.stringify(ress)
  780. )}&accountObj=${encodeURIComponent(
  781. JSON.stringify(this.accountObj)
  782. )}&deptId=${this.deptId}&scanOrHand=${type}&qrcode=${this.currentCode}`,
  783. });
  784. }
  785. });
  786. } else {
  787. uni.hideLoading();
  788. uni.showToast({
  789. icon: "none",
  790. title: result.info || "接口获取数据失败!",
  791. });
  792. }
  793. });
  794. // ------------------------------
  795. },
  796. // 查看未扫描标本
  797. // isScan true已扫描标本,false未扫描标本
  798. getNoScanSpecimen(isScan) {
  799. if (!this.gotoFlag) {
  800. return;
  801. }
  802. this.gotoFlag = false;
  803. let ids = JSON.parse(this.queryObj.ids);
  804. if (isScan) {
  805. uni.navigateTo({
  806. url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(
  807. JSON.stringify(ids)
  808. )}&deptCode=${this.queryObj.code}&isScan=1`,
  809. });
  810. } else {
  811. uni.navigateTo({
  812. url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(
  813. JSON.stringify(ids)
  814. )}&deptCode=${this.queryObj.code}`,
  815. });
  816. }
  817. },
  818. // 正常完成扫描
  819. overFinish() {
  820. //完成扫描
  821. let postType = "";
  822. if (
  823. this.queryObj.type1 === "plan-spe-ddd-2" ||
  824. this.queryObj.type1 === "plan-spe-dsd-2" ||
  825. this.queryObj.type1 === "plan-spe-dsd-3"
  826. ) {
  827. postType = "finishPlanSpes";
  828. } else if (this.queryObj.type1 == "spe-ddd-2") {
  829. postType = "finishSpes";
  830. }
  831. let data = {
  832. type: this.queryObj.type1,
  833. ids: this.wcId,
  834. };
  835. uni.showLoading({
  836. title: "加载中",
  837. mask: true,
  838. });
  839. post("/workerOrder/" + postType, data).then((res) => {
  840. if (res.status == 200) {
  841. this.models2 = {
  842. disjunctor: true,
  843. title: "提示",
  844. content: `完成扫描成功`,
  845. icon: "success",
  846. operate: {
  847. know: "知道了",
  848. },
  849. };
  850. } else {
  851. uni.hideLoading();
  852. uni.showToast({
  853. icon: "none",
  854. title: res.msg || "接口获取数据失败!",
  855. });
  856. }
  857. });
  858. },
  859. // 确定
  860. ok() {
  861. this.models.disjunctor = false;
  862. if (this.modelFlag === "complete") {
  863. uni.showLoading({
  864. title: "加载中",
  865. mask: true,
  866. });
  867. let ids = JSON.parse(this.queryObj.ids);
  868. let postData = {
  869. ids,
  870. sign: true,
  871. deptQrCode: this.queryObj.code,
  872. };
  873. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  874. uni.hideLoading();
  875. if (ress.status == 200) {
  876. if (this.wcFlag) {
  877. //正常完成扫描
  878. this.overFinish();
  879. } else {
  880. this.gotoOver();
  881. }
  882. } else if (ress.status == 1000035) {
  883. let content = "";
  884. if (
  885. this.queryObj.type1 === "spe-ddd-2" ||
  886. this.queryObj.type1 === "plan-spe-ddd-2"
  887. ) {
  888. //待到达
  889. content =
  890. `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
  891. } else {
  892. //待送达
  893. this.content = `本工单已签到<strong class="red">${
  894. ress.scanSet ? ress.scanSet.join("、") : ""
  895. }</strong>,剩余需签到科室<strong class="red">${
  896. ress.notScanSet ? ress.notScanSet.join("、") : ""
  897. }</strong>,总签收<strong class="red">${
  898. ress.totalAcceptance
  899. }</strong>只,剩余<strong class="red">${
  900. ress.notAcceptance
  901. }</strong>只未签收,您确定完成工单吗?`;
  902. content =
  903. `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
  904. }
  905. // 取消弹窗 2022年10月10日
  906. this.ok2();
  907. // this.models2 = {
  908. // disjunctor: true,
  909. // title: "提示",
  910. // content,
  911. // icon: "warn",
  912. // operate: {
  913. // ok: "确定",
  914. // cancel: "取消",
  915. // },
  916. // };
  917. } else {
  918. uni.showToast({
  919. icon: "none",
  920. title: ress.msg || "接口获取数据失败!",
  921. });
  922. }
  923. });
  924. } else if (this.modelFlag === "complete1") {
  925. //1对1标本完成工单
  926. let ids = this.wcId;
  927. uni.showLoading({
  928. title: "加载中",
  929. mask: true,
  930. });
  931. post("/workerOrder/finishSpeOrder", ids).then((res) => {
  932. if (res.status == 200) {
  933. uni.reLaunch({
  934. url: "../receiptpage/receiptpage",
  935. });
  936. } else {
  937. uni.hideLoading();
  938. uni.showToast({
  939. icon: "none",
  940. title: res.msg || "接口获取数据失败!",
  941. });
  942. }
  943. });
  944. }
  945. },
  946. // 取消
  947. cancel() {
  948. this.models.disjunctor = false;
  949. },
  950. // 确定
  951. ok2() {
  952. this.models2.disjunctor = false;
  953. let ids = JSON.parse(this.queryObj.ids);
  954. let postData = {
  955. ids,
  956. deptQrCode: this.queryObj.code,
  957. };
  958. uni.showLoading({
  959. title: "加载中",
  960. mask: true,
  961. });
  962. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  963. uni.hideLoading();
  964. if (ress.status == 200) {
  965. if (this.wcFlag) {
  966. this.overFinish();
  967. } else {
  968. this.gotoOver();
  969. }
  970. } else {
  971. uni.showToast({
  972. icon: "none",
  973. title: ress.msg || "接口获取数据失败!",
  974. });
  975. }
  976. });
  977. },
  978. // 取消
  979. cancel2() {
  980. this.models2.disjunctor = false;
  981. },
  982. know2() {
  983. this.models2.disjunctor = false;
  984. uni.reLaunch({
  985. url: "../receiptpage/receiptpage",
  986. });
  987. },
  988. //完成扫描
  989. Scanning_complete(id) {
  990. // 如果是标本配送和标本轮巡,则进入标本核对页面
  991. if((this.type === 'specimen' || this.type === 'specimenPlan') && this.queryObj.type1.includes('ddd')){
  992. uni.navigateTo({
  993. url: `../checkAfterScanning/checkAfterScanning?id=${id}&type=${this.queryObj.type}&type1=${this.queryObj.type1}&dept=${this.queryObj.dept}&deptId=${this.queryObj.deptId}&deptCode=${this.queryObj.deptCode}&speNum=${this.speNum}&content=${this.content}`,
  994. });
  995. return;
  996. }
  997. this.modelFlag = "complete";
  998. this.wcId = id;
  999. if (
  1000. this.queryObj.type1 == "plan-spe-ddd-2" ||
  1001. this.queryObj.type1 == "spe-ddd-2"
  1002. ) {
  1003. this.wcFlag = true;
  1004. this.models = {
  1005. disjunctor: true,
  1006. title: "提示",
  1007. content: "是否确定标本已扫描完成?",
  1008. icon: "warn",
  1009. operate: {
  1010. ok: "确定",
  1011. cancel: "取消",
  1012. },
  1013. };
  1014. } else if (
  1015. this.queryObj.type1 == "plan-spe-dsd-2" ||
  1016. this.queryObj.type1 == "plan-spe-dsd-3" ||
  1017. this.queryObj.type1 == "spe-dsd-2" ||
  1018. this.queryObj.type1 == "spe-dsd-3"
  1019. ) {
  1020. this.wcFlag = false;
  1021. this.models = {
  1022. disjunctor: true,
  1023. title: "提示",
  1024. content: "是否确定标本已扫描完成?",
  1025. icon: "warn",
  1026. operate: {
  1027. ok: "确定",
  1028. cancel: "取消",
  1029. },
  1030. };
  1031. } else {
  1032. this.gotoOver();
  1033. }
  1034. },
  1035. // 跳转完成工单页面
  1036. gotoOver() {
  1037. if(this.queryObj.type === 'specimenPlan'){
  1038. uni.navigateTo({
  1039. url: `../specimenCheckingEnd/specimenCheckingEnd?type=${this.queryObj.type}&type1=${
  1040. this.queryObj.type1
  1041. }&deptCode=${this.queryObj.code}&dept=${
  1042. this.queryObj.dept
  1043. }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&content=${
  1044. this.content
  1045. }`,
  1046. });
  1047. }else{
  1048. uni.navigateTo({
  1049. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  1050. this.queryObj.type1
  1051. }&deptCode=${this.queryObj.code}&dept=${
  1052. this.queryObj.dept
  1053. }&id=${encodeURIComponent(JSON.stringify(this.wcId))}&content=${
  1054. this.content
  1055. }`,
  1056. });
  1057. }
  1058. },
  1059. //一对一完成工单
  1060. Scanning_complete1(id) {
  1061. this.modelFlag = "complete1";
  1062. this.wcId = id;
  1063. this.models = {
  1064. disjunctor: true,
  1065. title: "提示",
  1066. content: "是否确定标本配送完成?",
  1067. icon: "warn",
  1068. operate: {
  1069. ok: "确定",
  1070. cancel: "取消",
  1071. },
  1072. };
  1073. },
  1074. //继续扫描
  1075. Scanning_again() {
  1076. if (!this.SMFlag) {
  1077. return;
  1078. }
  1079. this.SMFlag = false;
  1080. SM()
  1081. .then((ress1) => {
  1082. this.hand_scanning_common(ress1, 'scan');
  1083. })
  1084. .catch((err) => {
  1085. this.SMFlag = true;
  1086. });
  1087. },
  1088. // pda扫描
  1089. pdaChange(content){
  1090. content = content.replace('\n','')
  1091. this.hand_scanning_common(content, 'scan');
  1092. },
  1093. // 知道了
  1094. showAlert() {
  1095. uni.navigateTo({
  1096. url: "../receiptpage/receiptpage",
  1097. });
  1098. },
  1099. // 获取问卷配置
  1100. getQuestionnaireSet(){
  1101. uni.showLoading({
  1102. title: "加载中",
  1103. mask: true,
  1104. });
  1105. const userData = uni.getStorageSync("userData");
  1106. post("/simple/data/fetchDataList/questionnaireConfig",{
  1107. questionnaireConfig:{
  1108. hosId:userData.user.currentHospital.id
  1109. },
  1110. idx:0,
  1111. sum:10
  1112. }).then((res) => {
  1113. uni.hideLoading();
  1114. if (res.status == 200) {
  1115. let data = res.list[0];
  1116. let isQuestion = null
  1117. let taskTypeArr = []
  1118. if(data.taskTypeDTOS.length>0 && data.questionnaireDTOS.length>0){
  1119. if(this.type == 'other' && this.infoDATA.workOrderList.length>1){
  1120. for(let i of this.infoDATA.workOrderList){
  1121. taskTypeArr.push({
  1122. id:i.id, //工单id
  1123. taskTypeId:i.taskType.id //任务类型id
  1124. })
  1125. }
  1126. for(let t of data.taskTypeDTOS){
  1127. for(let x of taskTypeArr){
  1128. if(t.id == x.taskTypeId){
  1129. isQuestion = x
  1130. }
  1131. }
  1132. }
  1133. this.$nextTick(_=>{
  1134. if(isQuestion){
  1135. this.questionId = isQuestion.id
  1136. }
  1137. })
  1138. }else{
  1139. let taskTypeId = this.infoDATA.workOrderList[0].taskType.id
  1140. this.questionId = this.infoDATA.workOrderList[0].id
  1141. isQuestion = data.taskTypeDTOS.find(i=> i.id == taskTypeId)
  1142. }
  1143. this.$nextTick(_=>{
  1144. if(isQuestion){
  1145. this.isQuestionModel = true
  1146. }
  1147. })
  1148. }
  1149. } else {
  1150. uni.showToast({
  1151. icon: "none",
  1152. title: res.msg || "接口获取数据失败!",
  1153. });
  1154. }
  1155. });
  1156. },
  1157. // 页面控制-标本
  1158. getPageConfigSpecimen(fn, type, specimenDTO, ress){
  1159. const userData = uni.getStorageSync("userData");
  1160. console.log('userData', userData);
  1161. console.log('specimenDTO', specimenDTO);
  1162. uni.showLoading({
  1163. title: "加载中",
  1164. mask: true,
  1165. });
  1166. // 查询标本配送业务
  1167. post("/simple/data/fetchDataList/taskType",{
  1168. "idx": 0,
  1169. "sum": 10,
  1170. "taskType": {
  1171. "simpleQuery": true,
  1172. "hosId": {
  1173. "id": userData.user.currentHospital.id
  1174. },
  1175. "associationType": {
  1176. "key": "association_types",
  1177. "value": "specimen"
  1178. }
  1179. }
  1180. }).then((res) => {
  1181. if (res.status == 200) {
  1182. let taskTypeDTO = res.list[0];
  1183. if(taskTypeDTO){
  1184. // 查询业务页面控制-标本
  1185. post("/simple/data/fetchDataList/taskTypeConfig",{
  1186. "idx": 0,
  1187. "sum": 10,
  1188. "taskTypeConfig": {
  1189. taskTypeDTO,
  1190. }
  1191. }).then((res) => {
  1192. uni.hideLoading();
  1193. if (res.status == 200) {
  1194. let data = res.list[0];
  1195. if(data){
  1196. let deptNotAlertList = data.deptNotAlertList || [];
  1197. deptNotAlertList = deptNotAlertList.map(v => v.id);
  1198. if(deptNotAlertList.includes(specimenDTO.checkDept.id)){
  1199. this.isEndDeptRed = true;
  1200. console.log('红色')
  1201. fn(false, type, ress);
  1202. }else{
  1203. this.isEndDeptRed = false;
  1204. fn(true, type, ress);
  1205. }
  1206. console.log('this.isEndDeptRed', this.isEndDeptRed);
  1207. }else{
  1208. this.isEndDeptRed = false;
  1209. fn(true, type, ress);
  1210. }
  1211. } else {
  1212. uni.showToast({
  1213. icon: "none",
  1214. title: res.msg || "接口获取数据失败!",
  1215. });
  1216. }
  1217. });
  1218. }else{
  1219. uni.hideLoading();
  1220. uni.showToast({
  1221. icon: "none",
  1222. title: "未查询到标本配送业务!",
  1223. });
  1224. }
  1225. } else {
  1226. uni.hideLoading();
  1227. uni.showToast({
  1228. icon: "none",
  1229. title: res.msg || "接口获取数据失败!",
  1230. });
  1231. }
  1232. });
  1233. },
  1234. },
  1235. onShow() {
  1236. this.SMFlag = true;
  1237. this.gotoFlag = true;
  1238. let that = this;
  1239. // #ifdef APP-PLUS
  1240. uni.$off('scan') // 每次进来先 移除全局自定义事件监听器
  1241. uni.$on('scan', function(data) {
  1242. that.pdaChange(data)
  1243. })
  1244. // #endif
  1245. },
  1246. onLoad(options) {
  1247. console.log(options, "djEnd");
  1248. if (options.speNum) {
  1249. this.speNum = options.speNum;
  1250. }
  1251. if (options.accountObj && options.accountObj != "undefined") {
  1252. this.accountObj = JSON.parse(options.accountObj);
  1253. }
  1254. if (options.deptId && options.deptId != "undefined") {
  1255. this.deptId = options.deptId;
  1256. }
  1257. this.queryObj = options;
  1258. let list = JSON.parse(options.model); //签到返回的信息
  1259. this.code = options.code; //二维码code
  1260. this.ids = options.ids && JSON.parse(options.ids); //科室ID数组
  1261. this.infoDATA = list;
  1262. console.log(this.infoDATA, "this.infoDATA");
  1263. if (options.type) {
  1264. //关联类型
  1265. this.type = options.type;
  1266. } else {
  1267. this.type = list.type;
  1268. }
  1269. this.type1 = options.type1;
  1270. if(options.workOrderList){
  1271. this.infoDATA.workOrderList = JSON.parse(options.workOrderList)
  1272. }
  1273. if(
  1274. (this.infoDATA.state == 'finish' &&
  1275. this.infoDATA.status == 200 &&
  1276. this.type == 'specimenPlan' &&
  1277. this.infoDATA.type == 'plan-spe-dsd-1') ||
  1278. (this.infoDATA.status == 200 &&
  1279. this.type == 'other' &&
  1280. this.infoDATA.type == 'qt-dsd-1')){
  1281. this.getQuestionnaireSet()
  1282. }
  1283. if(this.queryObj.isDigitalHandover==1){
  1284. this.checkNumber();//自动弹出数量核对
  1285. }
  1286. // #ifdef APP-PLUS
  1287. webHandle("no", "app");
  1288. // #endif
  1289. // #ifdef H5
  1290. webHandle("no", "wx");
  1291. // #endif
  1292. },
  1293. };
  1294. </script>
  1295. <style lang="less">
  1296. .Scanning_djEnd {
  1297. padding: 0px 20rpx;
  1298. .Scanning_top {
  1299. min-height: 270rpx;
  1300. .Scanning_top_icon {
  1301. width: 140rpx;
  1302. height: 140rpx;
  1303. margin: 0 auto;
  1304. // margin-top: 116rpx;
  1305. border-radius: 50%;
  1306. line-height: 140rpx;
  1307. .cubeic-ok {
  1308. font-size: 140rpx;
  1309. color: #35b34a;
  1310. }
  1311. .cubeic-close {
  1312. font-size: 140rpx;
  1313. color: #ff3b53;
  1314. }
  1315. }
  1316. .Scanning_top_text {
  1317. .text1 {
  1318. margin-top: 40rpx;
  1319. font-size: 48rpx;
  1320. text-align: center;
  1321. }
  1322. }
  1323. }
  1324. .Scanning_cont {
  1325. font-size: 32rpx;
  1326. text-align: center;
  1327. view {
  1328. margin-bottom: 16rpx;
  1329. }
  1330. .text {
  1331. margin-top: 24rpx;
  1332. color: #35b34a;
  1333. }
  1334. .text1 {
  1335. margin-top: 24rpx;
  1336. color: #ff3b53;
  1337. }
  1338. }
  1339. .foot_btn {
  1340. line-height: 88rpx;
  1341. height: 100rpx;
  1342. margin-top: 40rpx;
  1343. text-align: center;
  1344. display: flex;
  1345. view {
  1346. height: 88rpx;
  1347. flex: 1;
  1348. margin: 0 1%;
  1349. background-image: linear-gradient(to right, #72c172, #3bb197);
  1350. color: #fff;
  1351. border-radius: 8rpx;
  1352. font-size: 32rpx;
  1353. margin-top: 16rpx;
  1354. }
  1355. }
  1356. .foot_btn_spe {
  1357. line-height: 88rpx;
  1358. height: 100rpx;
  1359. margin-top: 40rpx;
  1360. text-align: center;
  1361. display: flex;
  1362. justify-content: space-between;
  1363. flex-wrap: wrap;
  1364. &::after {
  1365. content: '';
  1366. flex: 1;
  1367. }
  1368. view {
  1369. height: 88rpx;
  1370. width: 48%;
  1371. margin: 0 1%;
  1372. background-image: linear-gradient(to right, #72c172, #3bb197);
  1373. color: #fff;
  1374. border-radius: 8rpx;
  1375. font-size: 32rpx;
  1376. margin-top: 16rpx;
  1377. }
  1378. }
  1379. }
  1380. </style>