scanning_Result.vue 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901
  1. <template>
  2. <view class="Scanning_Result">
  3. <view class="Scanning_top" v-if="res.status == 200">
  4. <view class="Scanning_top_icon">
  5. <text class="cubeic-ok icon_transport transport-duigou"></text>
  6. </view>
  7. <view class="Scanning_top_text">
  8. <view class="text1"> 操作成功 </view>
  9. <view class="success_tips" v-if="type == 'inspect' || type == 'patientTransport'">
  10. (请您评估患者的意识状况、生命体征、配合程度,如有异常请及时联系护士!)
  11. </view>
  12. </view>
  13. </view>
  14. <view class="Scanning_top" v-if="res.status != 200">
  15. <view class="Scanning_top_icon">
  16. <text class="cubeic-close icon_transport transport-shibai"></text>
  17. </view>
  18. <view class="Scanning_top_text">
  19. <view class="text1"> 操作失败 </view>
  20. <view class="text1 f30" v-if="queryObj.qrcode !== undefined"> 扫描内容:{{queryObj.qrcode}} </view>
  21. </view>
  22. </view>
  23. <view class="Scanning_cont" v-if="
  24. (res.status == 200 && type == 'specimenPlan') ||
  25. (res.status == 200 && type == 'specimen')
  26. ">
  27. <view> 标本类型 : {{ infoDATA.stype.name || "-" }} </view>
  28. <view> 标本编号 : {{ infoDATA.scode || "-" }} </view>
  29. <view>检验科室 : {{ infoDATA.checkDept ? infoDATA.checkDept.dept : "-" }}</view>
  30. <view>检验项目 : {{ infoDATA.specimenDesc || "-" }}</view>
  31. <view>患者姓名 : {{ infoDATA.patientName || "-" }}</view>
  32. <view>床号 : {{infoDATA.bedNum || "-"}}</view>
  33. <view> 已扫描 : {{ speNum }} </view>
  34. </view>
  35. <view class="Scanning_cont" v-if="
  36. (res.status == 200 && type == 'inspect') || type == 'patientTransport'
  37. ">
  38. <view v-if="res.patient"> 患者姓名 : {{ res.patient || "-" }} </view>
  39. <view v-if="res.patientCode">
  40. 患者编号 : {{ res.patientCode || "-" }}
  41. </view>
  42. <view v-if="res.deptName">
  43. 住院科室 : {{ res.deptName !== "undefined" ? res.deptName : "-" }}
  44. </view>
  45. <view v-if="res.bedNum">
  46. 床号 : {{ res.bedNum !== "undefined" ? res.bedNum : "-" }}
  47. </view>
  48. <view v-if="res.data">
  49. 检查项目 :
  50. <text v-for="(data, i) in res.data" :key="i">{{
  51. data.inspectName
  52. }}</text>
  53. </view>
  54. <view v-if="
  55. res.status == 200 &&
  56. infoType != 'ins-zxz-1' &&
  57. infoType != 'ins-dsd-1' &&
  58. infoType != 'ins-ddd-1' &&
  59. infoType != 'trans-ddd-1' &&
  60. infoType != 'trans-dsd-1'
  61. ">
  62. {{ res.msg || "" }}
  63. </view>
  64. <view v-if="infoType == 'trans-dsd-1' && res.status == 200">
  65. 工单已完成
  66. </view>
  67. <view v-if="infoType == 'ins-dsd-1' && res.status == 200">
  68. 工单已完成。
  69. </view>
  70. <!-- 半程陪检 -->
  71. <view v-if="infoDATA.type == 'ins-half-ok' && res.status == 200">
  72. 已到达检查科室,工单已完成。
  73. </view>
  74. </view>
  75. <view class="Scanning_cont" v-if="res.status == 200 && (type == 'drugsBag' || type == 'jPBag')">
  76. <view> 药包类型 : {{infoDATA.packType ? DRUGSBAG_TYPE[infoDATA.packType] : "暂无"}} </view>
  77. <view v-if="type == 'drugsBag'"> 药包编码 : #{{ infoDATA.packid }} </view>
  78. <view
  79. v-if="type == 'drugsBag' && accountObj && (queryObj.type1 === 'drug-ddd-2' || queryObj.type1 === 'drug-dsd-2')">
  80. 交接人账号 : {{ accountObj.account }} </view>
  81. <view
  82. v-if="type == 'drugsBag' && accountObj && (queryObj.type1 === 'drug-ddd-2' || queryObj.type1 === 'drug-dsd-2')">
  83. 交接人姓名 : {{ accountObj.accountName }} </view>
  84. <view v-if="type == 'jPBag'">
  85. 静配药包编码 : #{{ infoDATA.packid }}
  86. </view>
  87. <view> 所属科室 : {{ infoDATA.target.dept || "-" }} </view>
  88. <view v-if="infoType === 'drug-dsd-2' || infoType === 'jp-dsd-2'">
  89. 工单已完成。
  90. </view>
  91. <view class="red"> 如果您当前科室还有药包需要扫描,请点击“继续扫描”! </view>
  92. </view>
  93. <view class="Scanning_cont" v-if="res.status != 200">
  94. <view class="Scanning_cont_center">
  95. {{ res.msg === "undefined" || !res.msg ? "" : res.msg }}
  96. </view>
  97. </view>
  98. <view class="foot_btn" v-if="
  99. (type == 'specimen' && isKs != '1') ||
  100. (type == 'specimenPlan' && isKs != '1')
  101. ">
  102. <view class="btn1" @click="Scanning_again()"> 继续扫描 </view>
  103. <view class="btn3" @click="hand_again()">手动录入</view>
  104. <view class="btn3" @click="getNoScanSpecimen()">未扫描标本</view>
  105. <view class="btn2" @click="Scanning_complete(dataId)"> 完成扫描 </view>
  106. </view>
  107. <view class="foot_btn" v-if="
  108. (type != 'specimenPlan' &&
  109. type != 'specimen' &&
  110. type != 'drugsBag' &&
  111. type != 'jPBag' &&
  112. (type != 'inspect') & (type != 'patientTransport')) ||
  113. (queryObj.status == 200 &&
  114. type == 'drugsBag' &&
  115. infoType == 'drug-ddd-2') ||
  116. (queryObj.status == 200 &&
  117. type == 'drugsBag' &&
  118. infoType == 'drug-dsd-2') ||
  119. (queryObj.status == 200 && type == 'jPBag' && infoType == 'jp-ddd-2') ||
  120. (queryObj.status == 200 && type == 'jPBag' && infoType == 'jp-dsd-2') ||
  121. (queryObj.status == 200 && type == 'inspect') ||
  122. (queryObj.status == 200 && type == 'patientTransport')
  123. ">
  124. <view class="btn3" @click="Scanning_again()" v-if="type == 'drugsBag'||type == 'jPBag'"> 继续扫描 </view>
  125. <view class="btn3" @click="showAlert(dataId)"> 知道了 </view>
  126. </view>
  127. <view class="foot_btn" v-if="
  128. (isKs != '1' &&
  129. queryObj.status != 200 &&
  130. type == 'drugsBag' &&
  131. infoType == 'drug-ddd-2') ||
  132. (isKs != '1' &&
  133. queryObj.status != 200 &&
  134. type == 'drugsBag' &&
  135. infoType == 'drug-dsd-2') ||
  136. (isKs != '1' &&
  137. queryObj.status != 200 &&
  138. type == 'jPBag' &&
  139. infoType == 'jp-ddd-2') ||
  140. (isKs != '1' &&
  141. queryObj.status != 200 &&
  142. type == 'jPBag' &&
  143. infoType == 'jp-dsd-2') ||
  144. (isKs != '1' && queryObj.status != 200 && type == 'inspect') ||
  145. (isKs != '1' && queryObj.status != 200 && type == 'patientTransport')
  146. ">
  147. <view class="btn3" @click="Scanning_again()"> 继续扫描 </view>
  148. <view class="btn3" @click="showAlert()" v-if="type == 'drugsBag'"> 知道了 </view>
  149. <view class="btn3" @click="photograph(queryObj, { DEPTCode, DEPT, infoType })" v-if="
  150. (isKs != '1' && queryObj.status != 200 && type == 'inspect') ||
  151. (isKs != '1' && queryObj.status != 200 && type == 'patientTransport')
  152. ">
  153. 拍照
  154. </view>
  155. </view>
  156. <view class="foot_btn" v-if="
  157. infoType == 'spe-ddd-1' ||
  158. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-dsd-2') ||
  159. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-dsd-1') ||
  160. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-ddd-2') ||
  161. (isKs == '1' && queryObj.status != 200 && infoType == 'spe-dsd-3') ||
  162. (isKs == '1' &&
  163. queryObj.status != 200 &&
  164. infoType == 'plan-spe-ddd-1') ||
  165. (isKs == '1' &&
  166. queryObj.status != 200 &&
  167. infoType == 'plan-spe-ddd-2') ||
  168. (isKs == '1' &&
  169. queryObj.status != 200 &&
  170. infoType == 'plan-spe-dsd-1') ||
  171. (isKs == '1' &&
  172. queryObj.status != 200 &&
  173. infoType == 'plan-spe-dsd-2') ||
  174. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-ddd-2') ||
  175. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-dsd-2') ||
  176. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-ddd-2') ||
  177. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-dsd-2') ||
  178. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-ddd-1') ||
  179. (isKs == '1' && queryObj.status != 200 && infoType == 'drug-dsd-1') ||
  180. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-ddd-1') ||
  181. (isKs == '1' && queryObj.status != 200 && infoType == 'jp-dsd-1') ||
  182. (isKs == '1' &&
  183. queryObj.status != 200 &&
  184. infoType == 'plan-spe-dsd-3') ||
  185. (isKs == '1' &&
  186. queryObj.status != 200 &&
  187. type == 'inspect' &&
  188. queryObj.type1 === 'undefined') ||
  189. (isKs == '1' &&
  190. queryObj.status != 200 &&
  191. type == 'patientTransport' &&
  192. queryObj.type1 === 'undefined')
  193. ">
  194. <view class="btn3" @click="showAlert(dataId)"> 知道了 </view>
  195. </view>
  196. <view class="foot_btn" v-if="
  197. (isKs == '1' &&
  198. queryObj.status != 200 &&
  199. type == 'inspect' &&
  200. queryObj.type1 === 'ins-zxz-1') ||
  201. (isKs == '1' &&
  202. queryObj.status != 200 &&
  203. type == 'inspect' &&
  204. queryObj.type1 === 'ins-dsd-1') ||
  205. (isKs == '1' &&
  206. queryObj.status != 200 &&
  207. type == 'patientTransport' &&
  208. queryObj.type1 === 'trans-dsd-1')
  209. ">
  210. <view class="btn1" @click="showAlert(dataId)"> 知道了 </view>
  211. <view class="btn2" @click="goToRight(dataId)"> 继续执行工单 </view>
  212. </view>
  213. <!-- 弹窗 -->
  214. <showModel :title="models.title" :icon="models.icon" :disjunctor="models.disjunctor" :content="models.content"
  215. @ok="ok" @cancel="cancel" :operate="models.operate"></showModel>
  216. <!-- 弹窗 -->
  217. <showModel :title="models1.title" :icon="models1.icon" :disjunctor="models1.disjunctor"
  218. :radioItem="models1.radioItem" @ok="ok1" @radioChange="radioChange1" @cancel="cancel1" :operate="models1.operate">
  219. </showModel>
  220. <!-- 弹窗 -->
  221. <showModel :title="models2.title" :icon="models2.icon" :disjunctor="models2.disjunctor" :content="models2.content"
  222. @ok="ok2" @know="know2" @cancel="cancel2" :operate="models2.operate">
  223. </showModel>
  224. <!-- 手动查询标本弹窗 -->
  225. <handViewSpecimen v-if="speModels.disjunctor" :title="speModels.title" :disjunctor="speModels.disjunctor"
  226. @ok="speOk" @cancel="speCancel">
  227. </handViewSpecimen>
  228. </view>
  229. </template>
  230. <script>
  231. import showModel from "../../components/showModel/showModel.vue";
  232. import {
  233. get,
  234. post,
  235. SM,
  236. webHandle
  237. } from "../../http/http.js";
  238. import {
  239. photographTool
  240. } from "../../tools/photograph.js";
  241. import {
  242. DRUGSBAG_TYPE
  243. } from '../../tools/enum.drugsbagType.js';
  244. export default {
  245. data() {
  246. return {
  247. DRUGSBAG_TYPE,
  248. currentCode: '', //当前小扫描的科室二维码
  249. // 手动查询标本弹窗model
  250. speModels: {
  251. disjunctor: false,
  252. },
  253. deptId: undefined,
  254. handover: undefined,
  255. SMFlag: true,
  256. // 交接人信息
  257. accountObj: undefined,
  258. // 完成扫描的id
  259. wcId: "",
  260. wcFlag: false,
  261. // 弹窗model
  262. models: {
  263. disjunctor: false,
  264. },
  265. // 单选框弹窗model1
  266. models1: {
  267. disjunctor: false,
  268. },
  269. // 完成扫描弹窗model1
  270. models2: {
  271. disjunctor: false,
  272. },
  273. isKs: "", //是否科室签到 1
  274. infoDATA: {},
  275. res: {},
  276. infoType: "",
  277. DEPTCode: "",
  278. RESData: {},
  279. DEPT: "",
  280. dataId: "",
  281. type: "",
  282. model: {},
  283. speNum: 0,
  284. queryObj: {}, //路由传递过来的数据
  285. selectRadio: [], //单选框选中的数据,第一项是qrcode,第二项是名称
  286. gotoFlag: true,
  287. content: "",
  288. };
  289. },
  290. methods: {
  291. // 手动查询标本-确认
  292. speOk(data) {
  293. console.log(data);
  294. if (!data.id) {
  295. //没有查询到标本
  296. uni.showModal({
  297. title: '提示',
  298. content: "没有查询到标本!",
  299. showCancel: false,
  300. success: function(res) {
  301. if (res.confirm) {
  302. console.log('用户点击确定');
  303. } else if (res.cancel) {
  304. console.log('用户点击取消');
  305. }
  306. }
  307. });
  308. return;
  309. }
  310. this.speModels.disjunctor = false;
  311. this.hand_scanning_common(data.scode, 'hand');
  312. },
  313. // 手动查询标本-取消
  314. speCancel() {
  315. this.speModels.disjunctor = false;
  316. },
  317. // 手动查询标本弹窗
  318. showHandViewSpecimen() {
  319. this.speModels = {
  320. title: '填写标本编码',
  321. disjunctor: true,
  322. }
  323. },
  324. // 手动录入标本
  325. hand_again() {
  326. this.showHandViewSpecimen();
  327. },
  328. // 手动输入标本和扫码公共方法
  329. hand_scanning_common(ress1, type) {
  330. // ----------------
  331. uni.showLoading({
  332. title: "加载中",
  333. mask: true,
  334. });
  335. //检验二维码的有效性
  336. post("/dept/scanning", {
  337. content: ress1,
  338. }).then((result) => {
  339. this.SMFlag = true;
  340. this.currentCode = result.code;
  341. if (result.state == 200 || result.state == 201) {
  342. let codes = result.code;
  343. if (codes) {
  344. let speCode = codes;
  345. let data = {
  346. code: speCode,
  347. type: this.queryObj.type1,
  348. deptCode: this.DEPTCode,
  349. ids: [],
  350. };
  351. data.ids.push(this.dataId);
  352. let postType = "";
  353. if (this.type == "jPBag" || this.type == "drugsBag") {
  354. postType = "handleDrugsAndJp";
  355. delete data.ids;
  356. data.deptId = this.deptId;
  357. data.handover = this.handover;
  358. }
  359. if (this.type == "specimen") {
  360. data["speCode"] = data.code;
  361. delete data.code;
  362. postType = "handleSpes";
  363. }
  364. if (this.type == "specimenPlan") {
  365. data["speCode"] = data.code;
  366. delete data.code;
  367. postType = "handlePlanSpes";
  368. }
  369. if (this.type == "inspect") {
  370. postType = "handleIns";
  371. }
  372. if (this.type == "patientTransport") {
  373. postType = "handleTrans";
  374. }
  375. post("/workerOrder/" + postType, data).then((ress) => {
  376. uni.hideLoading();
  377. if (ress.status == 200) {
  378. //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  379. if (this.type == "specimenPlan" || this.type == "specimen") {
  380. if (type === 'scan') {
  381. this.Scanning_again();
  382. } else if (type === 'hand') {
  383. // this.hand_again();
  384. }
  385. }
  386. if (this.type == "specimenPlan" || this.type == "specimen") {
  387. this.infoDATA = ress.data;
  388. this.speNum = ress.specimenCount;
  389. uni.redirectTo({
  390. url: `../scanning_Result/scanning_Result?type=${
  391. this.queryObj.type
  392. }&type1=${
  393. this.queryObj.type1
  394. }&infoData=${encodeURIComponent(
  395. JSON.stringify(ress.data)
  396. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  397. this.queryObj.deptCode
  398. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&speNum=${this.speNum}&scanOrHand=${type}`,
  399. });
  400. } else if (
  401. this.type == "inspect" ||
  402. this.type == "patientTransport"
  403. ) {
  404. uni.redirectTo({
  405. url: `../scanning_Result/scanning_Result?type=${
  406. this.queryObj.type //baba
  407. }&type1=${
  408. this.queryObj.type1
  409. }&infoData=${encodeURIComponent(
  410. JSON.stringify(ress.data)
  411. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  412. this.queryObj.deptCode
  413. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(
  414. JSON.stringify(ress)
  415. )}&patient=${ress.patient}&patientCode=${
  416. ress.patientCode
  417. }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
  418. });
  419. } else {
  420. uni.redirectTo({
  421. url: `../scanning_Result/scanning_Result?type=${
  422. this.queryObj.type
  423. }&type1=${
  424. this.queryObj.type1
  425. }&infoData=${encodeURIComponent(
  426. JSON.stringify(ress.data)
  427. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  428. this.queryObj.deptCode
  429. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
  430. });
  431. }
  432. } else {
  433. uni.redirectTo({
  434. url: `../scanning_Result/scanning_Result?type=${
  435. this.queryObj.type
  436. }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
  437. ress.msg
  438. }&deptCode=${this.queryObj.deptCode}&dept=${
  439. this.queryObj.dept
  440. }&id=${this.dataId}&model=${encodeURIComponent(
  441. JSON.stringify(this.infoDATA)
  442. )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}&scanOrHand=${type}&qrcode=${this.currentCode}`,
  443. });
  444. }
  445. });
  446. } else {
  447. uni.hideLoading();
  448. }
  449. } else {
  450. uni.hideLoading();
  451. uni.showToast({
  452. icon: "none",
  453. title: "请求失败!",
  454. });
  455. }
  456. });
  457. // ------------------------------
  458. },
  459. // 查看未扫描标本
  460. getNoScanSpecimen() {
  461. if (!this.gotoFlag) {
  462. return;
  463. }
  464. this.gotoFlag = false;
  465. uni.navigateTo({
  466. url: `../noScanSpecimen/noScanSpecimen?workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}`,
  467. });
  468. },
  469. // 拍照
  470. photograph(data, obj) {
  471. photographTool(data, obj);
  472. },
  473. // 继续扫描
  474. Scanning_again() {
  475. if (!this.SMFlag) {
  476. return;
  477. }
  478. this.SMFlag = false;
  479. SM().then((ress1) => {
  480. this.hand_scanning_common(ress1, 'scan');
  481. }).catch(err => {
  482. this.SMFlag = true;
  483. });
  484. },
  485. // 正常完成扫描
  486. overFinish() {
  487. let data = {
  488. type: this.queryObj.type1,
  489. ids: [this.wcId],
  490. };
  491. //只要是标本轮巡1对多或者多对多
  492. // plan-spe-dsd-2 1对多
  493. // plan-spe-dsd-3 多对多
  494. if (
  495. this.queryObj.type1 === "plan-spe-ddd-2" ||
  496. this.queryObj.type1 === "plan-spe-dsd-2" ||
  497. this.queryObj.type1 === "plan-spe-dsd-3"
  498. ) {
  499. post("/workerOrder/finishPlanSpes", data).then((res) => {
  500. // uni.hideLoading()
  501. if (res.status == 200) {
  502. this.models2 = {
  503. disjunctor: true,
  504. title: "提示",
  505. content: `完成扫描成功`,
  506. icon: "success",
  507. operate: {
  508. know: "知道了",
  509. },
  510. };
  511. } else {
  512. uni.showToast({
  513. icon: "none",
  514. title: "请求失败!",
  515. });
  516. }
  517. });
  518. } else {
  519. post("/workerOrder/finishSpes", data).then((res) => {
  520. // uni.hideLoading()
  521. if (res.status == 200) {
  522. uni.navigateTo({
  523. url: "../receiptpage/receiptpage",
  524. });
  525. } else {
  526. uni.showToast({
  527. icon: "none",
  528. title: "请求失败!",
  529. });
  530. }
  531. });
  532. }
  533. },
  534. // 确定
  535. ok() {
  536. this.models.disjunctor = false;
  537. let postData = {
  538. ids: [this.queryObj.id],
  539. sign: true,
  540. deptQrCode: this.queryObj.deptCode
  541. };
  542. uni.showLoading({
  543. title: '加载中',
  544. mask: true
  545. });
  546. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  547. uni.hideLoading();
  548. if (ress.status == 200) {
  549. if (this.wcFlag) {
  550. //正常完成扫描
  551. this.overFinish()
  552. } else {
  553. this.gotoOver();
  554. }
  555. } else if (ress.status == 1000035) {
  556. let content = '';
  557. if (this.queryObj.type1 === 'spe-ddd-2' || this.queryObj.type1 === 'plan-spe-ddd-2') {
  558. //待到达
  559. content =
  560. `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
  561. } else {
  562. //待送达
  563. this.content =
  564. `本工单已签到<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>只未签收,您确定完成工单吗?`;
  565. content =
  566. `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
  567. }
  568. this.models2 = {
  569. disjunctor: true,
  570. title: "提示",
  571. content,
  572. icon: "warn",
  573. operate: {
  574. ok: "确定",
  575. cancel: "取消",
  576. },
  577. };
  578. } else {
  579. uni.showToast({
  580. icon: "none",
  581. title: "请求失败!",
  582. });
  583. }
  584. })
  585. },
  586. // 取消
  587. cancel() {
  588. this.models.disjunctor = false;
  589. },
  590. // 确定
  591. ok2() {
  592. this.models2.disjunctor = false;
  593. let postData = {
  594. ids: [this.queryObj.id],
  595. deptQrCode: this.queryObj.deptCode
  596. };
  597. uni.showLoading({
  598. title: '加载中',
  599. mask: true
  600. });
  601. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  602. uni.hideLoading();
  603. if (ress.status == 200) {
  604. if (this.wcFlag) {
  605. this.overFinish()
  606. } else {
  607. this.gotoOver();
  608. }
  609. } else {
  610. uni.showToast({
  611. icon: "none",
  612. title: "请求失败!",
  613. });
  614. }
  615. })
  616. },
  617. // 取消
  618. cancel2() {
  619. this.models2.disjunctor = false;
  620. },
  621. know2() {
  622. this.models2.disjunctor = false;
  623. uni.navigateTo({
  624. url: "../receiptpage/receiptpage",
  625. });
  626. },
  627. // 完成扫描
  628. Scanning_complete(id) {
  629. this.wcId = id;
  630. if (
  631. this.queryObj.type1 == "plan-spe-ddd-2" ||
  632. this.queryObj.type1 == "spe-ddd-2"
  633. ) {
  634. this.wcFlag = true;
  635. this.models = {
  636. disjunctor: true,
  637. title: "提示",
  638. content: "是否确定标本已扫描完成?",
  639. icon: "warn",
  640. operate: {
  641. ok: "确定",
  642. cancel: "取消",
  643. },
  644. };
  645. } else if (
  646. this.queryObj.type1 == "plan-spe-dsd-2" ||
  647. this.queryObj.type1 == "plan-spe-dsd-3" ||
  648. this.queryObj.type1 == "spe-dsd-2" ||
  649. this.queryObj.type1 == "spe-dsd-3"
  650. ) {
  651. this.wcFlag = false;
  652. this.models = {
  653. disjunctor: true,
  654. title: "提示",
  655. content: "是否确定标本已扫描完成?",
  656. icon: "warn",
  657. operate: {
  658. ok: "确定",
  659. cancel: "取消",
  660. },
  661. };
  662. } else {
  663. this.gotoOver();
  664. }
  665. },
  666. // 跳转完成工单页面
  667. gotoOver() {
  668. uni.navigateTo({
  669. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  670. this.queryObj.type1
  671. }&id=${encodeURIComponent(JSON.stringify([this.wcId]))}&deptCode=${
  672. this.queryObj.deptCode
  673. }&dept=${this.queryObj.dept}&speNum=${this.speNum}&content=${this.content}`,
  674. });
  675. },
  676. // 继续执行工单,当扫错科室码的时候,直接跳过,默默执行正确的科室码
  677. goToRight(id) {
  678. // flag 为1时查检查科室,flag为2时查终点科室
  679. let flag;
  680. // 患者转科,患者陪检
  681. if (
  682. this.queryObj.type1 == "trans-dsd-1" ||
  683. this.queryObj.type1 == "ins-dsd-1"
  684. ) {
  685. flag = 2;
  686. }
  687. if (this.queryObj.type1 == "ins-zxz-1") {
  688. flag = 1;
  689. }
  690. let postData = {
  691. workOrderId: id,
  692. flag: flag,
  693. };
  694. uni.showLoading({
  695. title: "加载中",
  696. mask: true,
  697. });
  698. post("/workerOrder/continueWorkOrder", postData).then((res) => {
  699. uni.hideLoading();
  700. console.log(res);
  701. if (res.state == 200) {
  702. let radioItem = [];
  703. res.data.forEach((item) => {
  704. let flag = radioItem.every(
  705. (item1) => item1.qrcode !== item.qrcode + "__" + item.deptName
  706. ); //如果radioItem里的所有项都与之不重复
  707. if (flag) {
  708. radioItem.push({
  709. qrcode: item.qrcode + "__" + item.deptName,
  710. deptName: item.deptName,
  711. });
  712. }
  713. });
  714. this.models1 = {
  715. disjunctor: true,
  716. title: "请选择正确的科室",
  717. radioItem,
  718. icon: "",
  719. operate: {
  720. ok: "确定",
  721. cancel: "取消",
  722. },
  723. };
  724. } else {
  725. uni.showToast({
  726. icon: "none",
  727. title: "请求失败!",
  728. });
  729. }
  730. });
  731. },
  732. // 选中单选框
  733. radioChange1(item) {
  734. console.log(item);
  735. this.selectRadio = item.split("__");
  736. },
  737. // 确定
  738. ok1() {
  739. this.models1.disjunctor = false;
  740. if (!this.selectRadio.length) {
  741. //默认选中第一项,选中则是选中项
  742. this.selectRadio = [
  743. this.models1.radioItem[0].qrcode.split("__")[0],
  744. this.models1.radioItem[0].deptName,
  745. ];
  746. }
  747. uni.navigateTo({
  748. url: `../scanning_code/scanning_code?type=${this.queryObj.type}&type1=${this.queryObj.type1}&id=${this.queryObj.id}&deptCode=${this.selectRadio[0]}&dept=${this.selectRadio[1]}`,
  749. });
  750. },
  751. // 取消
  752. cancel1() {
  753. this.models1.disjunctor = false;
  754. },
  755. // 知道了
  756. showAlert(id) {
  757. uni.navigateTo({
  758. url: "../receiptpage/receiptpage"
  759. });
  760. },
  761. },
  762. onShow() {
  763. this.SMFlag = true;
  764. this.gotoFlag = true;
  765. },
  766. onLoad(options) {
  767. if (options.status == 200&&options.scanOrHand === 'hand'&&(options.type === "specimen"||options.type === "specimenPlan")) {
  768. this.hand_again();
  769. }
  770. console.log(options, "result");
  771. this.queryObj = options;
  772. this.isKs = this.queryObj.isKs;
  773. if (options.infoData && options.infoData != "undefined") {
  774. this.infoDATA = JSON.parse(options.infoData);
  775. } else if (options.model) {
  776. this.infoDATA = JSON.parse(options.model);
  777. }
  778. if (options.accountObj && options.accountObj != "undefined") {
  779. this.accountObj = JSON.parse(options.accountObj);
  780. }
  781. if (options.deptId && options.deptId != "undefined") {
  782. this.deptId = options.deptId;
  783. }
  784. if (options.handover && options.handover != "undefined") {
  785. this.handover = options.handover;
  786. }
  787. this.dataId = options.id;
  788. this.RESData = options.resData;
  789. this.res["status"] = options.status;
  790. this.res["msg"] = options.msg;
  791. console.log(options.patient);
  792. this.res["patient"] = options.patient;
  793. this.res["patientCode"] = options.patientCode;
  794. this.res["deptName"] = options.deptName;
  795. this.res["bedNum"] = options.bedNum;
  796. this.infoType = options.type1;
  797. if (options.dept) {
  798. this.DEPT = options.dept;
  799. }
  800. if (options.speNum) {
  801. this.speNum = options.speNum;
  802. }
  803. this.DEPTCode = options.deptCode;
  804. this.type = options.type;
  805. // #ifdef APP-PLUS
  806. webHandle("no", "app");
  807. // #endif
  808. // #ifdef H5
  809. webHandle("no", "wx");
  810. // #endif
  811. },
  812. };
  813. </script>
  814. <style lang="less">
  815. .Scanning_Result {
  816. padding: 0 20rpx;
  817. .Scanning_top {
  818. .Scanning_top_icon {
  819. width: 140rpx;
  820. height: 140rpx;
  821. margin: 0 auto;
  822. margin-top: 116rpx;
  823. border-radius: 50%;
  824. line-height: 140rpx;
  825. .cubeic-ok {
  826. font-size: 140rpx;
  827. color: #35b34a;
  828. }
  829. .cubeic-close {
  830. font-size: 140rpx;
  831. color: #ff3b53;
  832. }
  833. }
  834. .Scanning_top_text {
  835. .text1 {
  836. margin-top: 40rpx;
  837. font-size: 48rpx;
  838. text-align: center;
  839. }
  840. .success_tips {
  841. color: red;
  842. font-size: 30rpx;
  843. }
  844. }
  845. }
  846. .Scanning_cont {
  847. font-size: 32rpx;
  848. text-align: center;
  849. view {
  850. margin-bottom: 16rpx;
  851. }
  852. .Scanning_cont_center {
  853. text-align: center;
  854. }
  855. .text {
  856. margin-top: 24rpx;
  857. color: #35b34a;
  858. }
  859. .text1 {
  860. margin-top: 24rpx;
  861. color: #ff3b53;
  862. }
  863. }
  864. .foot_btn {
  865. line-height: 88rpx;
  866. height: 100rpx;
  867. margin-top: 40rpx;
  868. display: flex;
  869. justify-content: center;
  870. .btn1,
  871. .btn2,
  872. .btn3 {
  873. height: 88rpx;
  874. flex: 1;
  875. margin: 0 1%;
  876. background-image: linear-gradient(to right, #72c172, #3bb197);
  877. color: #fff;
  878. border-radius: 8rpx;
  879. font-size: 32rpx;
  880. margin-top: 16rpx;
  881. text-align: center;
  882. }
  883. }
  884. }
  885. </style>