scanning_Result.vue 27 KB

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