scanning_Result.vue 28 KB

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