scanning_Result.vue 39 KB

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