scanning_Result.vue 28 KB

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