scanning_Result.vue 32 KB

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