scanning_Result.vue 32 KB

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