scanning_djInfo.vue 26 KB

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