scanning_djInfo.vue 34 KB

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