scanning_Result.vue 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035
  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. </view>
  258. </template>
  259. <script>
  260. import showModel from "../../components/showModel/showModel.vue";
  261. import {
  262. get,
  263. post,
  264. SM,
  265. webHandle
  266. } from "../../http/http.js";
  267. import {
  268. photographTool
  269. } from "../../tools/photograph.js";
  270. import {
  271. DRUGSBAG_TYPE
  272. } from '../../tools/enum.drugsbagType.js';
  273. export default {
  274. data() {
  275. return {
  276. DRUGSBAG_TYPE,
  277. currentCode: '', //当前小扫描的科室二维码
  278. // 手动查询标本弹窗model
  279. speModels: {
  280. disjunctor: false,
  281. },
  282. deptId: undefined,
  283. handover: undefined,
  284. SMFlag: true,
  285. // 交接人信息
  286. accountObj: undefined,
  287. // 完成扫描的id
  288. wcId: "",
  289. wcFlag: false,
  290. // 弹窗model
  291. models: {
  292. disjunctor: false,
  293. },
  294. // 单选框弹窗model1
  295. models1: {
  296. disjunctor: false,
  297. },
  298. // 完成扫描弹窗model1
  299. models2: {
  300. disjunctor: false,
  301. },
  302. isKs: "", //是否科室签到 1
  303. infoDATA: {},
  304. res: {},
  305. infoType: "",
  306. DEPTCode: "",
  307. RESData: {},
  308. DEPT: "",
  309. dataId: "",
  310. type: "",
  311. model: {},
  312. speNum: 0,
  313. queryObj: {}, //路由传递过来的数据
  314. selectRadio: [], //单选框选中的数据,第一项是qrcode,第二项是名称
  315. gotoFlag: true,
  316. content: "",
  317. };
  318. },
  319. methods: {
  320. // 手动查询标本-确认
  321. speOk(data) {
  322. console.log(data);
  323. if (!data.id) {
  324. //没有查询到标本
  325. uni.showModal({
  326. title: '提示',
  327. content: "没有查询到标本!",
  328. showCancel: false,
  329. success: function(res) {
  330. if (res.confirm) {
  331. console.log('用户点击确定');
  332. } else if (res.cancel) {
  333. console.log('用户点击取消');
  334. }
  335. }
  336. });
  337. return;
  338. }
  339. this.speModels.disjunctor = false;
  340. this.hand_scanning_common(data.scode, 'hand');
  341. },
  342. // 手动查询标本-取消
  343. speCancel() {
  344. this.speModels.disjunctor = false;
  345. },
  346. // 手动查询标本弹窗
  347. showHandViewSpecimen() {
  348. this.speModels = {
  349. title: '填写标本编码',
  350. disjunctor: true,
  351. }
  352. },
  353. // 手动录入标本
  354. hand_again() {
  355. this.showHandViewSpecimen();
  356. },
  357. // 手动输入标本和扫码公共方法
  358. hand_scanning_common(ress1, type) {
  359. // ----------------
  360. uni.showLoading({
  361. title: "加载中",
  362. mask: true,
  363. });
  364. //检验二维码的有效性
  365. post("/dept/scanning", {
  366. content: ress1,
  367. }).then((result) => {
  368. this.SMFlag = true;
  369. this.currentCode = result.code;
  370. if (result.state == 200 || result.state == 201) {
  371. let codes = result.code;
  372. if (codes) {
  373. let speCode = codes;
  374. let data = {
  375. code: speCode,
  376. type: this.queryObj.type1,
  377. deptCode: this.DEPTCode,
  378. ids: [],
  379. };
  380. data.ids.push(this.dataId);
  381. let postType = "";
  382. if (this.type == "jPBag" || this.type == "drugsBag") {
  383. postType = "handleDrugsAndJp";
  384. delete data.ids;
  385. data.deptId = this.deptId;
  386. data.handover = this.handover;
  387. }
  388. if (this.type == "specimen") {
  389. data["speCode"] = data.code;
  390. delete data.code;
  391. postType = "handleSpes";
  392. }
  393. if (this.type == "specimenPlan") {
  394. data["speCode"] = data.code;
  395. delete data.code;
  396. postType = "handlePlanSpes";
  397. }
  398. if (this.type == "inspect") {
  399. postType = "handleIns";
  400. }
  401. if (this.type == "patientTransport") {
  402. postType = "handleTrans";
  403. }
  404. post("/workerOrder/" + postType, data).then((ress) => {
  405. uni.hideLoading();
  406. if (ress.status == 200 || ress.status == 11111) {
  407. //标本和标本轮巡工单,扫描标本后会自动调用摄像头,继续扫描,直到status不是200
  408. if ((this.type == "specimenPlan" || this.type == "specimen") && ress.status != 11111) {
  409. setTimeout(()=>{
  410. if (type === 'scan') {
  411. this.Scanning_again();
  412. }
  413. },500)
  414. }
  415. if (this.type == "specimenPlan" || this.type == "specimen") {
  416. this.infoDATA = ress.data;
  417. this.speNum = ress.specimenCount;
  418. uni.redirectTo({
  419. url: `../scanning_Result/scanning_Result?type=${
  420. this.queryObj.type
  421. }&type1=${
  422. this.queryObj.type1
  423. }&infoData=${encodeURIComponent(
  424. JSON.stringify(ress.data)
  425. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  426. this.queryObj.deptCode
  427. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&speNum=${this.speNum}&scanOrHand=${type}`,
  428. });
  429. } else if (
  430. this.type == "inspect" ||
  431. this.type == "patientTransport"
  432. ) {
  433. if(this.type == "patientTransport" && this.queryObj.type1 == 'trans-ddd-1'){
  434. // 门诊服务点,有orderList
  435. if(ress.orderList){
  436. uni.navigateTo({
  437. url: `/pages/outpatient/outpatientStartSignIn/outpatientStartSignIn?model=${encodeURIComponent(JSON.stringify(ress))}`,
  438. });
  439. }else{
  440. uni.redirectTo({
  441. url: `../scanning_Result/scanning_Result?type=${
  442. this.queryObj.type
  443. }&type1=${
  444. this.queryObj.type1
  445. }&infoData=${encodeURIComponent(
  446. JSON.stringify(ress.data)
  447. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  448. this.queryObj.deptCode
  449. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(
  450. JSON.stringify(ress)
  451. )}&patient=${ress.patient}&patientCode=${
  452. ress.patientCode
  453. }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
  454. });
  455. }
  456. }else if(this.type == "patientTransport" && this.queryObj.type1 == 'trans-dsd-1'){
  457. // 门诊服务点,有orderList
  458. if(ress.orderList){
  459. uni.navigateTo({
  460. url: `/pages/outpatient/outpatientEndSignIn/outpatientEndSignIn?model=${encodeURIComponent(JSON.stringify(ress))}`,
  461. });
  462. }else{
  463. uni.redirectTo({
  464. url: `../scanning_Result/scanning_Result?type=${
  465. this.queryObj.type
  466. }&type1=${
  467. this.queryObj.type1
  468. }&infoData=${encodeURIComponent(
  469. JSON.stringify(ress.data)
  470. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  471. this.queryObj.deptCode
  472. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(
  473. JSON.stringify(ress)
  474. )}&patient=${ress.patient}&patientCode=${
  475. ress.patientCode
  476. }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
  477. });
  478. }
  479. }else{
  480. uni.redirectTo({
  481. url: `../scanning_Result/scanning_Result?type=${
  482. this.queryObj.type
  483. }&type1=${
  484. this.queryObj.type1
  485. }&infoData=${encodeURIComponent(
  486. JSON.stringify(ress.data)
  487. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  488. this.queryObj.deptCode
  489. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(
  490. JSON.stringify(ress)
  491. )}&patient=${ress.patient}&patientCode=${
  492. ress.patientCode
  493. }&deptName=${ress.deptName}&bedNum=${ress.bedNum}`,
  494. });
  495. }
  496. } else {
  497. uni.redirectTo({
  498. url: `../scanning_Result/scanning_Result?type=${
  499. this.queryObj.type
  500. }&type1=${
  501. this.queryObj.type1
  502. }&infoData=${encodeURIComponent(
  503. JSON.stringify(ress.data)
  504. )}&status=${ress.status}&msg=${ress.msg}&deptCode=${
  505. this.queryObj.deptCode
  506. }&dept=${this.queryObj.dept}&id=${this.dataId}&model=${encodeURIComponent(JSON.stringify(ress))}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}`,
  507. });
  508. }
  509. } else {
  510. uni.redirectTo({
  511. url: `../scanning_Result/scanning_Result?type=${
  512. this.queryObj.type
  513. }&type1=${this.queryObj.type1}&status=${ress.status}&msg=${
  514. ress.msg
  515. }&deptCode=${this.queryObj.deptCode}&dept=${
  516. this.queryObj.dept
  517. }&id=${this.dataId}&model=${encodeURIComponent(
  518. JSON.stringify(this.infoDATA)
  519. )}&accountObj=${encodeURIComponent(JSON.stringify(this.accountObj))}&deptId=${this.deptId}&handover=${this.handover}&scanOrHand=${type}&qrcode=${this.currentCode}`,
  520. });
  521. }
  522. });
  523. } else {
  524. uni.hideLoading();
  525. }
  526. } else {
  527. uni.hideLoading();
  528. uni.showToast({
  529. icon: "none",
  530. title: result.info || "接口获取数据失败!",
  531. });
  532. }
  533. });
  534. // ------------------------------
  535. },
  536. // 查看未扫描标本
  537. // isScan true已扫描标本,false未扫描标本
  538. getNoScanSpecimen(isScan) {
  539. if (!this.gotoFlag) {
  540. return;
  541. }
  542. this.gotoFlag = false;
  543. if(isScan){
  544. uni.navigateTo({
  545. url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}&isScan=1`,
  546. });
  547. }else{
  548. uni.navigateTo({
  549. url: `../noScanSpecimen/noScanSpecimen?deptName=${this.queryObj.dept}&workOrderId=${encodeURIComponent(JSON.stringify([this.queryObj.id]))}&deptCode=${this.queryObj.deptCode}`,
  550. });
  551. }
  552. },
  553. // 拍照
  554. photograph(data, obj) {
  555. photographTool(data, obj);
  556. },
  557. // 继续扫描
  558. Scanning_again() {
  559. if (!this.SMFlag) {
  560. return;
  561. }
  562. this.SMFlag = false;
  563. SM().then((ress1) => {
  564. this.hand_scanning_common(ress1, 'scan');
  565. }).catch(err => {
  566. this.SMFlag = true;
  567. });
  568. },
  569. // 正常完成扫描
  570. overFinish() {
  571. let data = {
  572. type: this.queryObj.type1,
  573. ids: [this.wcId],
  574. };
  575. //只要是标本轮巡1对多或者多对多
  576. // plan-spe-dsd-2 1对多
  577. // plan-spe-dsd-3 多对多
  578. if (
  579. this.queryObj.type1 === "plan-spe-ddd-2" ||
  580. this.queryObj.type1 === "plan-spe-dsd-2" ||
  581. this.queryObj.type1 === "plan-spe-dsd-3"
  582. ) {
  583. post("/workerOrder/finishPlanSpes", data).then((res) => {
  584. // uni.hideLoading()
  585. if (res.status == 200) {
  586. this.models2 = {
  587. disjunctor: true,
  588. title: "提示",
  589. content: `完成扫描成功`,
  590. icon: "success",
  591. operate: {
  592. know: "知道了",
  593. },
  594. };
  595. } else {
  596. uni.showToast({
  597. icon: "none",
  598. title: res.msg || "接口获取数据失败!",
  599. });
  600. }
  601. });
  602. } else {
  603. post("/workerOrder/finishSpes", data).then((res) => {
  604. // uni.hideLoading()
  605. if (res.status == 200) {
  606. uni.navigateTo({
  607. url: "../receiptpage/receiptpage",
  608. });
  609. } else {
  610. uni.showToast({
  611. icon: "none",
  612. title: res.msg || "接口获取数据失败!",
  613. });
  614. }
  615. });
  616. }
  617. },
  618. // 确定
  619. ok() {
  620. this.models.disjunctor = false;
  621. let postData = {
  622. ids: [this.queryObj.id],
  623. sign: true,
  624. deptQrCode: this.queryObj.deptCode
  625. };
  626. uni.showLoading({
  627. title: '加载中',
  628. mask: true
  629. });
  630. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  631. uni.hideLoading();
  632. if (ress.status == 200) {
  633. if (this.wcFlag) {
  634. //正常完成扫描
  635. this.overFinish()
  636. } else {
  637. this.gotoOver();
  638. }
  639. } else if (ress.status == 1000035) {
  640. let content = '';
  641. if (this.queryObj.type1 === 'spe-ddd-2' || this.queryObj.type1 === 'plan-spe-ddd-2') {
  642. //待到达
  643. content =
  644. `系统内预计标本<strong class="red">${ress.expectReceiveNum}</strong>只,您扫描收取标本<strong class="red">${ress.actualReceiveNum}</strong>只,其中<strong class="red">${ress.notReceiveNum}</strong>只未扫描;`;
  645. } else {
  646. //待送达
  647. this.content =
  648. `本工单已签到<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>只未签收,您确定完成工单吗?`;
  649. content =
  650. `您在<strong class="red">${ress.deptName}</strong>检验科扫描了<strong class="red">${ress.deptScanNum}</strong>个标本,还需扫描<strong class="red">${ress.deptNotScanNum}</strong>标本。`;
  651. }
  652. // 取消弹窗 2022年10月10日
  653. this.ok2();
  654. // this.models2 = {
  655. // disjunctor: true,
  656. // title: "提示",
  657. // content,
  658. // icon: "warn",
  659. // operate: {
  660. // ok: "确定",
  661. // cancel: "取消",
  662. // },
  663. // };
  664. } else {
  665. uni.showToast({
  666. icon: "none",
  667. title: ress.msg || "接口获取数据失败!",
  668. });
  669. }
  670. })
  671. },
  672. // 取消
  673. cancel() {
  674. this.models.disjunctor = false;
  675. },
  676. // 确定
  677. ok2() {
  678. this.models2.disjunctor = false;
  679. let postData = {
  680. ids: [this.queryObj.id],
  681. deptQrCode: this.queryObj.deptCode
  682. };
  683. uni.showLoading({
  684. title: '加载中',
  685. mask: true
  686. });
  687. post("/workerOrder/expectedAndActual", postData).then((ress) => {
  688. uni.hideLoading();
  689. if (ress.status == 200) {
  690. if (this.wcFlag) {
  691. this.overFinish()
  692. } else {
  693. this.gotoOver();
  694. }
  695. } else {
  696. uni.showToast({
  697. icon: "none",
  698. title: ress.msg || "接口获取数据失败!",
  699. });
  700. }
  701. })
  702. },
  703. // 取消
  704. cancel2() {
  705. this.models2.disjunctor = false;
  706. },
  707. know2() {
  708. this.models2.disjunctor = false;
  709. uni.navigateTo({
  710. url: "../receiptpage/receiptpage",
  711. });
  712. },
  713. // 完成扫描
  714. Scanning_complete(id) {
  715. // 如果是标本配送和标本轮巡,则进入标本核对页面
  716. if((this.type === 'specimen' || this.type === 'specimenPlan') && this.queryObj.type1.includes('ddd')){
  717. uni.navigateTo({
  718. 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}`,
  719. });
  720. return;
  721. }
  722. this.wcId = id;
  723. if (
  724. this.queryObj.type1 == "plan-spe-ddd-2" ||
  725. this.queryObj.type1 == "spe-ddd-2"
  726. ) {
  727. this.wcFlag = true;
  728. this.models = {
  729. disjunctor: true,
  730. title: "提示",
  731. content: "是否确定标本已扫描完成?",
  732. icon: "warn",
  733. operate: {
  734. ok: "确定",
  735. cancel: "取消",
  736. },
  737. };
  738. } else if (
  739. this.queryObj.type1 == "plan-spe-dsd-2" ||
  740. this.queryObj.type1 == "plan-spe-dsd-3" ||
  741. this.queryObj.type1 == "spe-dsd-2" ||
  742. this.queryObj.type1 == "spe-dsd-3"
  743. ) {
  744. this.wcFlag = false;
  745. this.models = {
  746. disjunctor: true,
  747. title: "提示",
  748. content: "是否确定标本已扫描完成?",
  749. icon: "warn",
  750. operate: {
  751. ok: "确定",
  752. cancel: "取消",
  753. },
  754. };
  755. } else {
  756. this.gotoOver();
  757. }
  758. },
  759. // 跳转完成工单页面
  760. gotoOver() {
  761. if(this.queryObj.type === 'specimenPlan'){
  762. uni.navigateTo({
  763. url: `../specimenCheckingEnd/specimenCheckingEnd?type=${this.queryObj.type}&type1=${
  764. this.queryObj.type1
  765. }&id=${encodeURIComponent(JSON.stringify([this.wcId]))}&deptCode=${
  766. this.queryObj.deptCode
  767. }&dept=${this.queryObj.dept}&speNum=${this.speNum}&content=${this.content}`,
  768. });
  769. }else{
  770. uni.navigateTo({
  771. url: `../scanning/scanning?type=${this.queryObj.type}&type1=${
  772. this.queryObj.type1
  773. }&id=${encodeURIComponent(JSON.stringify([this.wcId]))}&deptCode=${
  774. this.queryObj.deptCode
  775. }&dept=${this.queryObj.dept}&speNum=${this.speNum}&content=${this.content}`,
  776. });
  777. }
  778. },
  779. // 继续执行工单,当扫错科室码的时候,直接跳过,默默执行正确的科室码
  780. goToRight(id) {
  781. // flag 为1时查检查科室,flag为2时查终点科室
  782. let flag;
  783. // 患者转科,患者陪检
  784. if (
  785. this.queryObj.type1 == "trans-dsd-1" ||
  786. this.queryObj.type1 == "ins-dsd-1"
  787. ) {
  788. flag = 2;
  789. }
  790. if (this.queryObj.type1 == "ins-zxz-1") {
  791. flag = 1;
  792. }
  793. let postData = {
  794. workOrderId: id,
  795. flag: flag,
  796. };
  797. uni.showLoading({
  798. title: "加载中",
  799. mask: true,
  800. });
  801. post("/workerOrder/continueWorkOrder", postData).then((res) => {
  802. uni.hideLoading();
  803. console.log(res);
  804. if (res.state == 200) {
  805. let radioItem = [];
  806. res.data.forEach((item) => {
  807. let flag = radioItem.every(
  808. (item1) => item1.qrcode !== item.qrcode + "__" + item.deptName
  809. ); //如果radioItem里的所有项都与之不重复
  810. if (flag) {
  811. radioItem.push({
  812. qrcode: item.qrcode + "__" + item.deptName,
  813. deptName: item.deptName,
  814. });
  815. }
  816. });
  817. this.models1 = {
  818. disjunctor: true,
  819. title: "请选择正确的科室",
  820. radioItem,
  821. icon: "",
  822. operate: {
  823. ok: "确定",
  824. cancel: "取消",
  825. },
  826. };
  827. } else {
  828. uni.showToast({
  829. icon: "none",
  830. title: res.msg || "接口获取数据失败!",
  831. });
  832. }
  833. });
  834. },
  835. // 选中单选框
  836. radioChange1(item) {
  837. console.log(item);
  838. this.selectRadio = item.split("__");
  839. },
  840. // 确定
  841. ok1() {
  842. this.models1.disjunctor = false;
  843. if (!this.selectRadio.length) {
  844. //默认选中第一项,选中则是选中项
  845. this.selectRadio = [
  846. this.models1.radioItem[0].qrcode.split("__")[0],
  847. this.models1.radioItem[0].deptName,
  848. ];
  849. }
  850. uni.navigateTo({
  851. 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]}`,
  852. });
  853. },
  854. // 取消
  855. cancel1() {
  856. this.models1.disjunctor = false;
  857. },
  858. // 知道了
  859. showAlert(id) {
  860. uni.navigateTo({
  861. url: "../receiptpage/receiptpage"
  862. });
  863. },
  864. },
  865. onShow() {
  866. this.SMFlag = true;
  867. this.gotoFlag = true;
  868. },
  869. onLoad(options) {
  870. if (options.status == 200&&options.scanOrHand === 'hand'&&(options.type === "specimen"||options.type === "specimenPlan")) {
  871. this.hand_again();
  872. }
  873. console.log(options, "result");
  874. this.queryObj = options;
  875. this.isKs = this.queryObj.isKs;
  876. if (options.infoData && options.infoData != "undefined") {
  877. this.infoDATA = JSON.parse(options.infoData);
  878. } else if (options.model) {
  879. this.infoDATA = JSON.parse(options.model);
  880. }
  881. if (options.accountObj && options.accountObj != "undefined") {
  882. this.accountObj = JSON.parse(options.accountObj);
  883. }
  884. if (options.deptId && options.deptId != "undefined") {
  885. this.deptId = options.deptId;
  886. }
  887. if (options.handover && options.handover != "undefined") {
  888. this.handover = options.handover;
  889. }
  890. this.dataId = options.id;
  891. this.RESData = options.resData;
  892. this.res["status"] = options.status;
  893. this.res["msg"] = options.msg;
  894. console.log(options.patient);
  895. this.res["patient"] = options.patient;
  896. this.res["patientCode"] = options.patientCode;
  897. this.res["deptName"] = options.deptName;
  898. this.res["bedNum"] = options.bedNum;
  899. this.infoType = options.type1;
  900. if (options.dept) {
  901. this.DEPT = options.dept;
  902. }
  903. if (options.speNum) {
  904. this.speNum = options.speNum;
  905. }
  906. this.DEPTCode = options.deptCode;
  907. this.type = options.type;
  908. // #ifdef APP-PLUS
  909. webHandle("no", "app");
  910. // #endif
  911. // #ifdef H5
  912. webHandle("no", "wx");
  913. // #endif
  914. },
  915. };
  916. </script>
  917. <style lang="less">
  918. .Scanning_Result {
  919. padding: 0 20rpx;
  920. .Scanning_top {
  921. .Scanning_top_icon {
  922. width: 140rpx;
  923. height: 140rpx;
  924. margin: 0 auto;
  925. margin-top: 116rpx;
  926. border-radius: 50%;
  927. line-height: 140rpx;
  928. .speNum{
  929. text-align: center;
  930. font-size: 140rpx;
  931. }
  932. .cubeic-ok {
  933. font-size: 140rpx;
  934. color: #35b34a;
  935. }
  936. .cubeic-close {
  937. font-size: 140rpx;
  938. color: #ff3b53;
  939. }
  940. }
  941. .Scanning_top_text {
  942. .text1 {
  943. font-size: 48rpx;
  944. text-align: center;
  945. }
  946. .success_tips {
  947. color: red;
  948. font-size: 30rpx;
  949. }
  950. }
  951. }
  952. .Scanning_cont {
  953. font-size: 32rpx;
  954. text-align: center;
  955. view {
  956. margin-bottom: 16rpx;
  957. }
  958. .Scanning_cont_center {
  959. text-align: center;
  960. }
  961. .text {
  962. margin-top: 24rpx;
  963. color: #35b34a;
  964. }
  965. .text1 {
  966. margin-top: 24rpx;
  967. color: #ff3b53;
  968. }
  969. }
  970. .foot_btn {
  971. line-height: 88rpx;
  972. height: 100rpx;
  973. margin-top: 40rpx;
  974. display: flex;
  975. justify-content: center;
  976. .btn1,
  977. .btn2,
  978. .btn3 {
  979. height: 88rpx;
  980. flex: 1;
  981. margin: 0 1%;
  982. background-image: linear-gradient(to right, #72c172, #3bb197);
  983. color: #fff;
  984. border-radius: 8rpx;
  985. font-size: 32rpx;
  986. margin-top: 16rpx;
  987. text-align: center;
  988. }
  989. }
  990. .foot_btn_spe {
  991. line-height: 88rpx;
  992. height: 100rpx;
  993. margin-top: 40rpx;
  994. text-align: center;
  995. display: flex;
  996. justify-content: space-between;
  997. flex-wrap: wrap;
  998. &::after {
  999. content: '';
  1000. flex: 1;
  1001. }
  1002. view {
  1003. height: 88rpx;
  1004. width: 48%;
  1005. margin: 0 1%;
  1006. background-image: linear-gradient(to right, #72c172, #3bb197);
  1007. color: #fff;
  1008. border-radius: 8rpx;
  1009. font-size: 32rpx;
  1010. margin-top: 16rpx;
  1011. }
  1012. }
  1013. }
  1014. </style>